home *** CD-ROM | disk | FTP | other *** search
/ Cricao de Sites - 650 Layouts Prontos / WebMasters.iso / Editores / phpeditor_setup_en.exe / {app} / functions.dat < prev    next >
Text File  |  2003-09-27  |  274KB  |  2,847 lines

  1. $GLOBALS | ContΘm referΩncia a todas as varißveis do script
  2. $_GET | Var. enviadas pelo mΘtodo GET
  3. $_POST | Var. enviadas pelo mΘtodo POST
  4. $_COOKIE | Var. postadas ao script por Cokies
  5. $_FILES | Var. postadas ao script via transf. de arquivos HTTP.
  6. $_ENV | Var. disponφveis no script do ambiente de execuτπo.
  7. $_REQUEST | Var. postadas ao script por todas os mecanismos de entrada
  8. $_SERVER | Var. criadas pelo servidor
  9. $_SERVER['PHP_SELF'] | Nome do script
  10. $_SERVER['argv'] | Array de argumentos passados ao script
  11. $_SERVER['argc'] | No. de param. passados ao script
  12. $_SERVER['GATEWAY_INTERFACE'] | No. de versπo do CGI do server
  13. $_SERVER['SERVER_NAME'] | Nome host do server
  14. $_SERVER['SERVER_SOFTWARE'] | String de Ident. do server
  15. $_SERVER['SERVER_PROTOCOL'] | Nome e No. do protocolo utilizado
  16. $_SERVER['REQUEST_METHOD'] | MΘtodo de request utilizado
  17. $_SERVER['QUERY_STRING'] | String pela qual a pag. foi solicitada
  18. $_SERVER['DOCUMENT_ROOT'] | Diret≤rio Raiz do arquivo
  19. $_SERVER['HTTP_ACCEPT'] | O conte·do do header Accept
  20. $_SERVER['HTTP_ACCEPT_CHARSET'] | O conte·do do header Accept-Charset
  21. $_SERVER['HTTP_ACCEPT_ENCODING'] | O conte·do do header Accept-Encoding
  22. $_SERVER['HTTP_ACCEPT_LANGUAGE'] | O conte·do do header Accept-Language
  23. $_SERVER['HTTP_CONNECTION'] | O conte·do do header Connection
  24. $_SERVER['HTTP_HOST'] | O conte·do do header Host
  25. $_SERVER['HTTP_REFERER'] | Pßgina que fez chamou o script
  26. $_SERVER['HTTP_USER_AGENT'] | O conte·do do header User_Agent
  27. $_SERVER['REMOTE_ADDR'] | IP do usußrio
  28. $_SERVER['REMOTE_HOST'] | Host do usußrio
  29. $_SERVER['REMOTE_PORT'] | Porta TCP do usußrio
  30. $_SERVER['SCRIPT_FILENAME'] | Caminho do script em execuτπo
  31. $_SERVER['SERVER_ADMIN'] | Valor fornecido pela diretiva SERVER_ADMIN
  32. $_SERVER['SERVER_PORT']| Porta do servidor
  33. $_SERVER['SERVER_SIGNATURE']| String contendo nome do servidor
  34. $_SERVER['PATH_TRANSLATED'] | Caminho real do script no servidor
  35. $_SERVER['SCRIPT_NAME'] | Caminho completo para o script
  36. $_SERVER['REQUEST_URI'] |  URI fornecido para acessar a pßgina atual
  37. $_SERVER['PHP_AUTH_USER'] | Username fornecido pelo usußrio
  38. $_SERVER['PHP_AUTH_PW']| Senha fornecida pelo usußrio
  39. $_SERVER['AUTH_TYPE'] | Tipo de autenticaτπo utilizada
  40. mixed abs ( mixed n·mero)| Valor absoluto
  41. float acos ( float arg)| Cosseno Inverso (arco cosseno)
  42. float acosh ( float arg)| Coseno Hiperb≤lico Inverso
  43. string addcslashes ( string str, string charlist)| String entre aspas com barras no estilo C 
  44. string addslashes ( string str)| String entre aspas com barras
  45. void aggregate ( object object, string class_name)|  dynamic class and object aggregation of methods and properties 
  46. array aggregate_info ( object object)|  returns an associative array of the methods and properties from each class that has been aggregated to the object. 
  47. void aggregate_methods ( object object, string class_name)|  dynamic class and object aggregation of methods 
  48. void aggregate_methods_by_list ( object object, string class_name, array methods_list [, bool exclude])|  selective dynamic class methods aggregation to an object 
  49. void aggregate_methods_by_regexp ( object object, string class_name, string regexp [, bool exclude])|  selective class methods aggregation to an object using a regular expression 
  50. void aggregate_properties ( object object, string class_name)|  dynamic aggregation of class properties to an object 
  51. void aggregate_properties_by_list ( object object, string class_name, array properties_list [, bool exclude])|  selective dynamic class properties aggregation to an object 
  52. void aggregate_properties_by_regexp ( object object, string class_name, string regexp [, bool exclude])|  selective class properties aggregation to an object using a regular expression 
  53. bool apache_child_terminate ( void )| Finaliza o processo Apache depois da requisiτπo
  54. object apache_lookup_uri ( string filename)|  Realiza uma requisiτπo parcial para a URI especificada e retorna todas as informaτ⌡es sobre ela 
  55. string apache_note ( string note_name [, string note_value])| ObtΘm e seta notas de requisiτπo
  56. array apache_request_headers ( void )| Obtem todos os headers HTTP
  57. array apache_response_headers ( void )|  ObtΩm todos os headers da resposta HTTP 
  58. int apache_setenv ( string variable, string value [, bool walk_to_top])| Configura uma varißvel no ambiente do sub processo Apache
  59. array array ( [mixed ...])|  Cria um array 
  60. array array_change_key_case ( array input [, int case])| Retorna um array com todas as chaves string em mai·sculo ou min·sculo
  61. array array_chunk ( array input, int size [, bool preserve_keys])| Divide um array em pedaτos
  62. array array_combine ( array keys, array values)|  Creates an array by using one array for keys and another for its values 
  63. array array_count_values ( array input)| Conta as frequΩncias de cada valor de um array
  64. array array_diff ( array array1, array array2 [, array ...])| Analisa as diferenτas entre arrays
  65. array array_diff_assoc ( array array1, array array2 [, array ...])| Computes the difference of arrays with additional index check
  66. array array_fill ( int start_index, int num, mixed value)| Preenche um array com valores
  67. array array_filter ( array input [, mixed callback])|  Filtra os elementos de um array utilizando uma funτπo 
  68. array array_flip ( array trans)| Inverte as relaτ⌡es entre chaves e valores
  69. array array_intersect ( array array1, array array2 [, array ...])| Calcula a interseτπo entre arrays
  70. array array_intersect_assoc ( array array1, array array2 [, array ...])| Computes the intersection of arrays with additional index check
  71. bool array_key_exists ( mixed key, array search)| Checa se uma chave ou φndice existe em um array
  72. array array_keys ( array input [, mixed search_value])| Retorna todas as chaves de um array
  73. array array_map ( mixed callback, array arr1 [, array arr2...])|  Aplica uma funτπo em todos os elementos dos arrays dados 
  74. array array_merge ( array array1, array array2 [, array ...])| Funde dois ou mais arrays
  75. array array_merge_recursive ( array array1, array array2 [, array ...])| Funde dois ou mais arrays recursivamente
  76. bool array_multisort ( array ar1 [, mixed arg [, mixed ... [, array ...]]])| Ordena m·ltiplos arrays ou arrays multi-dimensionais
  77. array array_pad ( array input, int pad_size, mixed pad_value)|  Expande um array para um certo comprimento utilizando um determinado valor 
  78. mixed array_pop ( array array)| Retira um elemento do final do array
  79. int array_push ( array array, mixed var [, mixed ...])|  Adiciona um ou mais elementos no final de um array 
  80. mixed array_rand ( array input [, int num_req])|  Retorna um ou mais elementos aleat≤rios de um array 
  81. mixed array_reduce ( array input, mixed callback [, int initial])|  Reduz um array para um ·nico valor atravΘs de um processo iterativo utilizando uma funτπo. 
  82. array array_reverse ( array array [, bool preserve_keys])|  Retorna um array com os elementos na ordem inversa 
  83. mixed array_search ( mixed needle, array haystack [, bool strict])|  Procura por um valor em um array e retorna sua chave correspondente caso seja encontrado 
  84. mixed array_shift ( array array)|  Retira o primeiro elemento de um array 
  85. array array_slice ( array array, int offset [, int length])| Extrai uma parcela de um array
  86. array array_splice ( array input, int offset [, int length [, array replacement]])|  Remove uma parcela do array e substitui com outros elementos 
  87. mixed array_sum ( array arr)|  Calcula a soma dos elementos de um array 
  88. array array_unique ( array array)| Remove o valores duplicados de um array
  89. int array_unshift ( array array, mixed var [, mixed ...])|  Adiciona um ou mais elementos no inφcio de um array 
  90. array array_values ( array input)| Retorna todos os valores de um array
  91. int array_walk ( array arr, string func [, mixed userdata])|  Aplica uma determinada funcπo em cada elemento de um array 
  92. void arsort ( array array [, int sort_flags])|  Ordena um array em ordem descrescente mantendo a associaτπo entre φndices e valores 
  93. int ascii2ebcdic ( string ascii_str)| Converte uma string de ASCII para EBCDIC
  94. float asin ( float arg)| Seno Inverso (arco seno)
  95. float asinh ( float arg)| Seno Hiperb≤lico Inverso
  96. void asort ( array array [, int sort_flags])|  Ordena um array mantendo a associaτπo entre φndices e valores 
  97. bool aspell_check ( int dictionary_link, string word)| Check a word [deprecated]
  98. bool aspell_check_raw ( int dictionary_link, string word)|  Check a word without changing its case or trying to trim it [deprecated] 
  99. int aspell_new ( string master [, string personal])| Load a new dictionary [deprecated]
  100. array aspell_suggest ( int dictionary_link, string word)| Suggest spellings of a word [deprecated]
  101. int assert ( mixed assertion)| Checks if assertion is FALSE
  102. mixed assert_options ( int what [, mixed value])| Set/get the various assert flags
  103. float atan ( float arg)| Tangente Inversa (arco tangente)
  104. float atan2 ( float y, float x)| Tangente inversa de duas varißveis
  105. float atanh ( float arg)| Tangente hiperb≤lica inversa
  106. string base64_decode ( string encoded_data)| Decodifica dados codificados com MIME base64
  107. string base64_encode ( string dados)| Codifica dados com MIME base64
  108. string base_convert ( string number, int frombase, int tobase)| Converte um n·mero entre bases arbitrßrias
  109. string basename ( string path [, string sufixo])| Retorna a parte nome do arquivo do caminho/path
  110. string bcadd ( string operador_da_esquerda, string operador_da_direita [, int escala])| Adicionar dois n·meros de precisπo arbitrßria
  111. int bccomp ( string operador_da_esquerda, string operador_da_direita [, int escala])| Comparar dois n·meros de precisπo arbitrßria
  112. string bcdiv ( string operador_da_esquerda, string operador_da_direita [, int escala])| Dividir dois n·meros de precisπo arbitrßria
  113. string bcmod ( string operador_da_esquerda, string modulo)|  Obter o m≤dulo de um n·mero com precisπo arbitrßria 
  114. string bcmul ( string operador_da_esquerda, string operador_da_direita [, int escala])| Multiplicar dois n·meros de precisπo arbitrßria
  115. string bcpow ( string x, int y [, int escala])|  Elevar um n·mero de precisπo arbitrßria a outro 
  116. string bcpowmod ( string x, string y, string modulus [, int scale])|  Raise an arbitrary precision number to another, reduced by a specified modulus. 
  117. string bcscale ( int escala)|  Configura o paramentro escala para todas as funτ⌡es bc 
  118. string bcsqrt ( string operador [, int scale])|  Obter a raiz quadrada de um n·mero de precisπo arbitrßria 
  119. string bcsub ( string operador_da_esquerda, string operador_da_direita [, int escala])|  Subtrair um n·mero de precisπo arbitrßria de outro 
  120. string bin2hex ( string str)|  Converte um dado binßrio em hexadecimal 
  121. string bind_textdomain_codeset ( string domφnio, string codificaτπo)|  Define qual caracter de codificaτπo serß retornado pelas mensagens do catßlogo do DOM═NIO especificado. 
  122. int bindec ( string binary_string)| Binßrio para decimal
  123. string bindtextdomain ( string domφnio, string diret≤rio)| Configura o caminho para um domφnio
  124. int bzclose ( resource bz)| Fecha um ponteiro de arquivo bzip2
  125. string bzcompress ( string source [, int blocksize [, int workfactor]])| Comprime uma string em dados no formato bzip2
  126. string bzdecompress ( string source [, int small])| Descomprime dados no formato bzip2
  127. int bzerrno ( resource bz)| Retorna um n·mero de erro do bzip2
  128. array bzerror ( resource bz)| Retorna o n·mero e string de erro do bzip2 como um array
  129. string bzerrstr ( resource bz)| Retorna a string de erro do bzip2
  130. int bzflush ( resource bz)| Forτa a escrita de todos os dados que estπo no buffer
  131. resource bzopen ( string filename, string mode)| Abre um arquivo comprimido com bzip2
  132. string bzread ( resource bz [, int length])| Leitura binary-safe de um arquivo bzip2
  133. int bzwrite ( resource bz, string data [, int length])| Escrita binary-safe em um arquivo bzip2
  134. int cal_days_in_month ( int calendar, int month, int year)| Return the number of days in a month for a given year and calendar
  135. array cal_from_jd ( int jd, int calendar)| Converts from Julian Day Count to a supported calendar
  136. array cal_info ( [int calendar])| Returns information about a particular calendar
  137. int cal_to_jd ( int calendar, int month, int day, int year)| Converts from a supported calendar to Julian Day Count
  138. mixed call_user_func ( callback function [, mixed parameter [, mixed ...]])|  Call a user function given by the first parameter 
  139. mixed call_user_func_array ( callback function [, array paramarr])|  Call a user function given with an array of parameters 
  140. mixed call_user_method ( string method_name, object obj [, mixed parameter [, mixed ...]])|  Chama um mΘtodo de usußrio num objeto especφfico [obsoleto] 
  141. mixed call_user_method_array ( string method_name, object obj [, array paramarr])|  Chama mΘtodos de usußrio dado uma matriz de parΓmetros [obsoleto] 
  142. string ccvs_add ( string session, string invoice, string argtype, string argval)| Add data to a transaction 
  143. string ccvs_auth ( string session, string invoice)|  Perform credit authorization test on a transaction 
  144. string ccvs_command ( string session, string type, string argval)|  Performs a command which is peculiar to a single protocol, and thus is not available in the general CCVS API 
  145. int ccvs_count ( string session, string type)|  Find out how many transactions of a given type are stored in the system 
  146. string ccvs_delete ( string session, string invoice)| Delete a transaction
  147. string ccvs_done ( string sess)| Terminate CCVS engine and do cleanup work
  148. string ccvs_init ( string name)| Initialize CCVS for use
  149. string ccvs_lookup ( string session, string invoice, int inum)|  Look up an item of a particular type in the database # 
  150. string ccvs_new ( string session, string invoice)| Create a new, blank transaction 
  151. string ccvs_report ( string session, string type)| Return the status of the background communication process 
  152. string ccvs_return ( string session, string invoice)|  Transfer funds from the merchant to the credit card holder 
  153. string ccvs_reverse ( string session, string invoice)|  Perform a full reversal on an already-processed authorization 
  154. string ccvs_sale ( string session, string invoice)|  Transfer funds from the credit card holder to the merchant 
  155. string ccvs_status ( string session, string invoice)| Check the status of an invoice
  156. string ccvs_textvalue ( string session)| Get text return value for previous function call
  157. string ccvs_void ( string session, string invoice)|  Perform a full reversal on a completed transaction 
  158. float ceil ( float valor)| Arredonda fraτ⌡es para cima
  159. bool chdir ( string diretorio)| Muda o diret≤rio
  160. bool checkdate ( int month, int day, int year)| Validar uma data Gregoriana
  161. int checkdnsrr ( string host [, string type])|  Check DNS records corresponding to a given Internet host name or IP address 
  162. bool chgrp ( string arquivo, mixed grupo)| Modifica o grupo do arquivo
  163. bool chmod ( string arquivo, int modo)| Modifica as permiss⌡es do arquivo
  164. bool chown ( string arquivo, mixed usuario)| Modifica o dono do arquivo
  165. string chr ( int ascii)| Retorna um caracter especφfico
  166. bool chroot ( string diretorio)| Muda o diret≤rio raiz (root)
  167. string chunk_split ( string body [, int chunklen [, string end]])| Divide uma string em pequenos pedaτos
  168. bool class_exists ( string class_name)| Checa se uma classe foi definida
  169. void clearstatcache ( void )| Limpa as informaτ⌡es em cache de arquivos
  170. void closedir ( resource dir_handle)| fechar o handle do diret≤rio
  171. int closelog ( void )| Close connection to system logger
  172. void com_addref ( void )|  Increases the components reference counter.
  173. mixed com_get ( resource com_object, string property)|  Gets the value of a COM Component's property 
  174. mixed com_invoke ( resource com_object, string function_name [, mixed function parameters, ...])|  Calls a COM component's method. 
  175. void com_isenum ( object com_module)| Grabs an IEnumVariant
  176. string com_load ( string module_name [, string server_name [, int codepage]])|  Creates a new reference to a COM component 
  177. void com_load_typelib ( string typelib_name [, int case_insensitive])| Loads a Typelib
  178. void com_release ( void )|  Decreases the components reference counter.
  179. void com_set ( resource com_object, string property, mixed value)|  Assigns a value to a COM component's property 
  180. array compact ( mixed varname [, mixed ...])|  Cria um array contendo varißveis e seus valores 
  181. int connection_aborted ( void )| Retorna TRUE se o cliente desconectou
  182. int connection_status ( void )| Retorna o status da conexπo
  183. bool connection_timeout ( void )| Retorna TRUE se o script ultrapassou o limite de tempo
  184. mixed constant ( string name)| Retorna o valor de uma constante
  185. string convert_cyr_string ( string str, string from, string to)|  Converte de um caracter cirφlico para outro 
  186. bool copy ( string origem, string destino)| Copia arquivo
  187. float cos ( float arg)| Coseno
  188. float cosh ( float arg)| Coseno hiperb≤lico
  189. int count ( mixed var)| Conta o n·mero de elementos de uma varißvel
  190. mixed count_chars ( string string [, int mode])|  Retorna informaτ⌡es sobre os caracteres usados numa string 
  191. void cpdf_add_annotation ( int pdf_document, float llx, float lly, float urx, float ury, string title, string content [, int mode])| Adds annotation
  192. void cpdf_add_outline ( int pdf_document, string text)| Adds bookmark for current page
  193. void cpdf_arc ( int pdf_document, float x-coor, float y-coor, float radius, float start, float end [, int mode])| Draws an arc
  194. void cpdf_begin_text ( int pdf_document)| Starts text section
  195. void cpdf_circle ( int pdf_document, float x-coor, float y-coor, float radius [, int mode])| Draw a circle
  196. void cpdf_clip ( int pdf_document)| Clips to current path
  197. void cpdf_close ( int pdf_document)| Closes the pdf document
  198. void cpdf_closepath ( int pdf_document)| Close path
  199. void cpdf_closepath_fill_stroke ( int pdf_document)| Close, fill and stroke current path
  200. void cpdf_closepath_stroke ( int pdf_document)| Close path and draw line along path
  201. void cpdf_continue_text ( int pdf_document, string text)| Output text in next line
  202. void cpdf_curveto ( int pdf_document, float x1, float y1, float x2, float y2, float x3, float y3 [, int mode])| Draws a curve
  203. void cpdf_end_text ( int pdf_document)| Ends text section
  204. void cpdf_fill ( int pdf_document)| Fill current path
  205. void cpdf_fill_stroke ( int pdf_document)| Fill and stroke current path
  206. void cpdf_finalize ( int pdf_document)| Ends document
  207. void cpdf_finalize_page ( int pdf_document, int page_number)| Ends page
  208. void cpdf_global_set_document_limits ( int maxpages, int maxfonts, int maximages, int maxannotations, int maxobjects)| Sets document limits for any pdf document
  209. int cpdf_import_jpeg ( int pdf_document, string file_name, float x-coor, float y-coor, float angle, float width, float height, float x-scale, float y-scale [, int mode])| Opens a JPEG image
  210. void cpdf_lineto ( int pdf_document, float x-coor, float y-coor [, int mode])| Draws a line
  211. void cpdf_moveto ( int pdf_document, float x-coor, float y-coor [, int mode])| Sets current point
  212. void cpdf_newpath ( int pdf_document)| Starts a new path
  213. int cpdf_open ( int compression [, string filename])| Opens a new pdf document
  214. void cpdf_output_buffer ( int pdf_document)| Outputs the pdf document in memory buffer
  215. void cpdf_page_init ( int pdf_document, int page_number, int orientation, float height, float width [, float unit])| Starts new page
  216. void cpdf_place_inline_image ( int pdf_document, int image, float x-coor, float y-coor, float angle, float width, float height [, int mode])| Places an image on the page
  217. void cpdf_rect ( int pdf_document, float x-coor, float y-coor, float width, float height [, int mode])| Draw a rectangle
  218. void cpdf_restore ( int pdf_document)| Restores formerly saved environment
  219. void cpdf_rlineto ( int pdf_document, float x-coor, float y-coor [, int mode])| Draws a line
  220. void cpdf_rmoveto ( int pdf_document, float x-coor, float y-coor [, int mode])| Sets current point
  221. void cpdf_rotate ( int pdf_document, float angle)| Sets rotation
  222. void cpdf_rotate_text ( int pdfdoc, float angle)|  Sets text rotation angle 
  223. void cpdf_save ( int pdf_document)| Saves current environment
  224. void cpdf_save_to_file ( int pdf_document, string filename)| Writes the pdf document into a file
  225. void cpdf_scale ( int pdf_document, float x-scale, float y-scale)| Sets scaling
  226. void cpdf_set_action_url ( int pdfdoc, float xll, float yll, float xur, float xur, string url [, int mode])|  Sets hyperlink 
  227. void cpdf_set_char_spacing ( int pdf_document, float space)| Sets character spacing
  228. void cpdf_set_creator ( string creator)| Sets the creator field in the pdf document
  229. void cpdf_set_current_page ( int pdf_document, int page_number)| Sets current page
  230. void cpdf_set_font ( int pdf_document, string font_name, float size, string encoding)| Select the current font face and size
  231. void cpdf_set_font_directories ( int pdfdoc, string pfmdir, string pfbdir)|  Sets directories to search when using external fonts 
  232. void cpdf_set_font_map_file ( int pdfdoc, string filename)|  Sets fontname to filename translation map when using external fonts 
  233. void cpdf_set_horiz_scaling ( int pdf_document, float scale)| Sets horizontal scaling of text
  234. void cpdf_set_keywords ( string keywords)| Sets the keywords field of the pdf document
  235. void cpdf_set_leading ( int pdf_document, float distance)| Sets distance between text lines
  236. void cpdf_set_page_animation ( int pdf_document, int transition, float duration)| Sets duration between pages
  237. void cpdf_set_subject ( string subject)| Sets the subject field of the pdf document
  238. void cpdf_set_text_matrix ( int pdf_document, array matrix)| Sets the text matrix
  239. void cpdf_set_text_pos ( int pdf_document, float x-coor, float y-coor [, int mode])| Sets text position
  240. void cpdf_set_text_rendering ( int pdf_document [, int mode])| Determines how text is rendered
  241. void cpdf_set_text_rise ( int pdf_document, float value)| Sets the text rise
  242. void cpdf_set_title ( string title)| Sets the title field of the pdf document
  243. void cpdf_set_viewer_preferences ( int pdfdoc, array preferences)|  How to show the document in the viewer 
  244. void cpdf_set_word_spacing ( int pdf_document, float space)| Sets spacing between words
  245. void cpdf_setdash ( int pdf_document, float white, float black)| Sets dash pattern
  246. void cpdf_setflat ( int pdf_document, float value)| Sets flatness
  247. void cpdf_setgray ( int pdf_document, float gray_value)| Sets drawing and filling color to gray value
  248. void cpdf_setgray_fill ( int pdf_document, float value)| Sets filling color to gray value
  249. void cpdf_setgray_stroke ( int pdf_document, float gray_value)| Sets drawing color to gray value
  250. void cpdf_setlinecap ( int pdf_document, int value)| Sets linecap parameter
  251. void cpdf_setlinejoin ( int pdf_document, int value)| Sets linejoin parameter
  252. void cpdf_setlinewidth ( int pdf_document, float width)| Sets line width
  253. void cpdf_setmiterlimit ( int pdf_document, float value)| Sets miter limit
  254. void cpdf_setrgbcolor ( int pdf_document, float red_value, float green_value, float blue_value)| Sets drawing and filling color to rgb color value
  255. void cpdf_setrgbcolor_fill ( int pdf_document, float red_value, float green_value, float blue_value)| Sets filling color to rgb color value
  256. void cpdf_setrgbcolor_stroke ( int pdf_document, float red_value, float green_value, float blue_value)| Sets drawing color to rgb color value
  257. void cpdf_show ( int pdf_document, string text)| Output text at current position
  258. void cpdf_show_xy ( int pdf_document, string text, float x-coor, float y-coor [, int mode])| Output text at position
  259. float cpdf_stringwidth ( int pdf_document, string text)| Returns width of text in current font
  260. void cpdf_stroke ( int pdf_document)| Draw line along path
  261. void cpdf_text ( int pdf_document, string text, float x-coor, float y-coor [, int mode [, float orientation [, int alignmode]]])| Output text with parameters
  262. void cpdf_translate ( int pdf_document, float x-coor, float y-coor [, int mode])| Sets origin of coordinate system
  263. bool crack_check ( [resource dictionary, string password])| Performs an obscure check with the given password
  264. bool crack_closedict ( [resource dictionary])| Closes an open CrackLib dictionary 
  265. string crack_getlastmessage ( void )| Returns the message from the last obscure check
  266. resource crack_opendict ( string dictionary)| Opens a new CrackLib dictionary
  267. int crc32 ( string str)| Calcula polin⌠mio crc32 de uma string
  268. string create_function ( string args, string code)| Create an anonymous (lambda-style) function
  269. string crypt ( string str [, string salt])| ┌nico caminho de codificaτπo de string (hashing)
  270. bool ctype_alnum ( string text)| Check for alphanumeric character(s)
  271. bool ctype_alpha ( string text)| Check for alphabetic character(s)
  272. bool ctype_cntrl ( string text)| Check for control character(s)
  273. bool ctype_digit ( string text)| Check for numeric character(s)
  274. bool ctype_graph ( string text)| Check for any printable character(s) except space
  275. bool ctype_lower ( string text)| Check for lowercase character(s)
  276. bool ctype_print ( string text)| Check for printable character(s)
  277. bool ctype_punct ( string text)|  Check for any printable character which is not whitespace or an alphanumeric character 
  278. bool ctype_space ( string text)| Check for whitespace character(s)
  279. bool ctype_upper ( string text)| Check for uppercase character(s)
  280. bool ctype_xdigit ( string text)|  Check for character(s) representing a hexadecimal digit 
  281. void curl_close ( resource ch)| Close a CURL session
  282. int curl_errno ( resource ch)| Return the last error number
  283. string curl_error ( resource ch)|  Return a string containing the last error for the current session 
  284. bool curl_exec ( resource ch)| Perform a CURL session
  285. string curl_getinfo ( resource ch [, int opt])|  Get information regarding a specific transfer 
  286. resource curl_init ( [string url])| Initialize a CURL session
  287. int curl_multi_add_handle ( resource mh, resource ch)|  Add a normal cURL handle to a cURL multi handle 
  288. void curl_multi_close ( resource mh)|  Close a set of cURL handles 
  289. int curl_multi_exec ( resource mh)|  Run the sub-connections of the current cURL handle 
  290. string curl_multi_getcontent ( resource ch)|  Return the content of a cURL handle if CURLOPT_RETURNTRANSFER is set 
  291. array curl_multi_info_read ( resource mh)|  Get information about the current transfers 
  292. resource curl_multi_init ( void )|  Returns a new cURL multi handle 
  293. int curl_multi_remove_handle ( resource mh, resource ch)|  Remove a multi handle from a set of cURL handles 
  294. int curl_multi_select ( resource mh [, float timeout])|  Get all the sockets associated with the cURL extension, which can then be "selected" 
  295. bool curl_setopt ( resource ch, string option, mixed value)| Set an option for a CURL transfer
  296. string curl_version ( void )| Return the current CURL version
  297. mixed current ( array array)| Retorna o elemento corrente em um array
  298. string cybercash_base64_decode ( string inbuff)| base64 decode data for Cybercash
  299. string cybercash_base64_encode ( string inbuff)| base64 encode data for Cybercash
  300. array cybercash_decr ( string wmk, string sk, string inbuff)| Cybercash decrypt
  301. array cybercash_encr ( string wmk, string sk, string inbuff)| Cybercash encrypt
  302. bool cyrus_authenticate ( resource connection [, string mechlist [, string service [, string user [, int minssf [, int maxssf]]]]])| Authenticate against a Cyrus IMAP server 
  303. bool cyrus_bind ( resource connection, array callbacks)| Bind callbacks to a Cyrus IMAP connection 
  304. bool cyrus_close ( resource connection)| Close connection to a Cyrus IMAP server 
  305. resource cyrus_connect ( [string host [, string port [, int flags]]])| Connect to a Cyrus IMAP server 
  306. bool cyrus_query ( resource connection, string query)| Send a query to a Cyrus IMAP server 
  307. bool cyrus_unbind ( resource connection, string trigger_name)| Unbind ... 
  308. string date ( string format [, int timestamp])| Formata a data e a hora local 
  309. void dba_close ( resource handle)| Close database
  310. bool dba_delete ( string key, resource handle)| Delete entry specified by key
  311. bool dba_exists ( string key, resource handle)| Check whether key exists
  312. string dba_fetch ( string key, resource handle)| Fetch data specified by key
  313. string dba_firstkey ( resource handle)| Fetch first key
  314. array dba_handlers ( void )| List handlers available
  315. bool dba_insert ( string key, string value, resource handle)| Insert entry
  316. array dba_list ( void )| List all open database files
  317. string dba_nextkey ( resource handle)| Fetch next key
  318. resource dba_open ( string path, string mode, string handler [, ...])| Open database
  319. bool dba_optimize ( resource handle)| Optimize database
  320. resource dba_popen ( string path, string mode, string handler [, ...])| Open database persistently
  321. bool dba_replace ( string key, string value, resource handle)| Replace or insert entry
  322. bool dba_sync ( resource handle)| Synchronize database
  323. bool dbase_add_record ( int dbase_identifier, array record)| Add a record to a dBase database
  324. bool dbase_close ( int dbase_identifier)| Close a dBase database
  325. int dbase_create ( string filename, array fields)| Creates a dBase database
  326. bool dbase_delete_record ( int dbase_identifier, int record)| Deletes a record from a dBase database
  327. array dbase_get_record ( int dbase_identifier, int record)| Gets a record from a dBase database
  328. array dbase_get_record_with_names ( int dbase_identifier, int record)|  Gets a record from a dBase database as an associative array 
  329. int dbase_numfields ( int dbase_identifier)|  Find out how many fields are in a dBase database 
  330. int dbase_numrecords ( int dbase_identifier)|  Find out how many records are in a dBase database 
  331. int dbase_open ( string filename, int flags)| Opens a dBase database
  332. bool dbase_pack ( int dbase_identifier)| Packs a dBase database
  333. bool dbase_replace_record ( int dbase_identifier, array record, int dbase_record_number)| Replace a record in a dBase database
  334. string dblist ( void )|  Describes the DBM-compatible library being used 
  335. bool dbmclose ( resource dbm_identifier)| Closes a dbm database
  336. bool dbmdelete ( resource dbm_identifier, string key)|  Deletes the value for a key from a DBM database 
  337. bool dbmexists ( resource dbm_identifier, string key)|  Tells if a value exists for a key in a DBM database 
  338. string dbmfetch ( resource dbm_identifier, string key)|  Fetches a value for a key from a DBM database 
  339. string dbmfirstkey ( resource dbm_identifier)|  Retrieves the first key from a DBM database 
  340. int dbminsert ( resource dbm_identifier, string key, string value)|  Inserts a value for a key in a DBM database 
  341. string dbmnextkey ( resource dbm_identifier, string key)|  Retrieves the next key from a DBM database
  342. resource dbmopen ( string filename, string flags)| Opens a DBM database
  343. int dbmreplace ( resource dbm_identifier, string key, string value)|  Replaces the value for a key in a DBM database 
  344. int dbplus_add ( resource relation, array tuple)| Add a tuple to a relation
  345. resource dbplus_aql ( string query [, string server [, string dbpath]])| Perform AQL query
  346. string dbplus_chdir ( [string newdir])| Get/Set database virtual current directory
  347. int dbplus_close ( resource relation)| Close a relation
  348. int dbplus_curr ( resource relation, array tuple)| Get current tuple from relation
  349. string dbplus_errcode ( int errno)|  Get error string for given errorcode or last error 
  350. int dbplus_errno ( void )| Get error code for last operation
  351. int dbplus_find ( resource relation, array constraints, mixed tuple)| Set a constraint on a relation
  352. int dbplus_first ( resource relation, array tuple)| Get first tuple from relation
  353. int dbplus_flush ( resource relation)| Flush all changes made on a relation
  354. int dbplus_freealllocks ( void )| Free all locks held by this client
  355. int dbplus_freelock ( resource relation, string tname)| Release write lock on tuple
  356. int dbplus_freerlocks ( resource relation)| Free all tuple locks on given relation
  357. int dbplus_getlock ( resource relation, string tname)| Get a write lock on a tuple
  358. int dbplus_getunique ( resource relation, int uniqueid)| Get an id number unique to a relation
  359. int dbplus_info ( resource relation, string key, array )| ???
  360. int dbplus_last ( resource relation, array tuple)| Get last tuple from relation
  361. int dbplus_lockrel ( resource relation)| Request write lock on relation
  362. int dbplus_next ( resource relation, array )| Get next tuple from relation
  363. resource dbplus_open ( string name)| Open relation file
  364. int dbplus_prev ( resource relation, array tuple)| Get previous tuple from relation
  365. int dbplus_rchperm ( resource relation, int mask, string user, string group)| Change relation permissions
  366. resource dbplus_rcreate ( string name, mixed domlist [, bool overwrite])| Creates a new DB++ relation
  367. resource dbplus_rcrtexact ( string name, resource relation, bool overwrite)| Creates an exact but empty copy of a relation including indices
  368. resource dbplus_rcrtlike ( string name, resource relation, int flag)| Creates an empty copy of a relation with default indices
  369. int dbplus_resolve ( string relation_name)| Resolve host information for relation
  370. int dbplus_restorepos ( resource relation, array tuple)| ???
  371. resource dbplus_rkeys ( resource relation, mixed domlist)| Specify new primary key for a relation
  372. resource dbplus_ropen ( string name)| Open relation file local
  373. int dbplus_rquery ( string query, string dbpath)| Perform local (raw) AQL query
  374. int dbplus_rrename ( resource relation, string name)| Rename a relation
  375. resource dbplus_rsecindex ( resource relation, mixed domlist, int type)|  Create a new secondary index for a relation 
  376. int dbplus_runlink ( resource relation)| Remove relation from filesystem
  377. int dbplus_rzap ( resource relation)| Remove all tuples from relation
  378. int dbplus_savepos ( resource relation)| ???
  379. int dbplus_setindex ( resource relation, string idx_name)| ???
  380. int dbplus_setindexbynumber ( resource relation, int idx_number)| ???
  381. resource dbplus_sql ( string query, string server, string dbpath)| Perform SQL query
  382. int dbplus_tcl ( int sid, string script)| Execute TCL code on server side
  383. int dbplus_tremove ( resource relation, array tuple [, array current])| Remove tuple and return new current tuple
  384. int dbplus_undo ( resource relation)| ???
  385. int dbplus_undoprepare ( resource relation)| ???
  386. int dbplus_unlockrel ( resource relation)| Give up write lock on relation
  387. int dbplus_unselect ( resource relation)| Remove a constraint from relation
  388. int dbplus_update ( resource relation, array old, array new)| Update specified tuple in relation
  389. int dbplus_xlockrel ( resource relation)| Request exclusive lock on relation
  390. int dbplus_xunlockrel ( resource relation)| Free exclusive lock on relation
  391. bool dbx_close ( object link_identifier)| Close an open connection/database
  392. int dbx_compare ( array row_a, array row_b, string column_key [, int flags])| Compare two rows for sorting purposes
  393. object dbx_connect ( mixed module, string host, string database, string username, string password [, int persistent])| Open a connection/database
  394. string dbx_error ( object link_identifier)|  Report the error message of the latest function call in the module (not just in the connection) 
  395. string dbx_escape_string ( object link_identifier, string text)|  Escape a string so it can safely be used in an sql-statement. 
  396. object dbx_query ( object link_identifier, string sql_statement [, long flags])| Send a query and fetch all results (if any)
  397. bool dbx_sort ( object result, string user_compare_function)|  Sort a result from a dbx_query by a custom sort function 
  398. string dcgettext ( string domφnio, string mensagem, int categoria)| Substitui o domφnio por um lookup
  399. string dcngettext ( string domφnio, string msgid1, string msgid2, int n, int categoria)| O mesmo que dcgettext, porΘm permite que vocΩ especifique mais de uma mensagem
  400. void deaggregate ( object object [, string class_name])|  Removes the aggregated methods and properties from an object 
  401. array debug_backtrace ( void )|  Generates a backtrace 
  402. void debug_print_backtrace ( void )|  Prints a backtrace 
  403. int debugger_off ( void )| Disable internal PHP debugger (PHP 3)
  404. int debugger_on ( string address)| Enable internal PHP debugger (PHP 3)
  405. string decbin ( int numero)| Decimal para binßrio
  406. string dechex ( int numero)| Decimal para hexadecimal
  407. string decoct ( int numero)| Decimal para octal
  408. bool define ( string name, mixed value [, bool case_insensitive])| Define uma constante.
  409. void define_syslog_variables ( void )| Initializes all syslog related constants
  410. bool defined ( string name)|  Confere se uma constante existe 
  411. float deg2rad ( float numero)|  Converte o n·mero em graus ao equivalente em radianos 
  412. void delete ( string file)| Veja unlink() ou unset()
  413. string dgettext ( string domφnio, string mensagem)| Sobreescreve o domφnio atual
  414. void dio_close ( resource fd)| Closes the file descriptor given by fd
  415. mixed dio_fcntl ( resource fd, int cmd [, mixed arg])| Performs a c library fcntl on fd
  416. resource dio_open ( string filename, int flags [, int mode])|  Opens a new filename with specified permissions of flags and creation permissions of mode 
  417. string dio_read ( resource fd [, int n])|  Reads n bytes from fd and returns them, if n is not specified, reads 1k block 
  418. int dio_seek ( resource fd, int pos, int whence)| Seeks to pos on fd from whence
  419. array dio_stat ( resource fd)|  Gets stat information about the file descriptor fd 
  420. void dio_tcsetattr ( resource fd, array options)|  Sets terminal attributes and baud rate for a serial port
  421. bool dio_truncate ( resource fd, int offset)|  Truncates file descriptor fd to offset bytes 
  422. int dio_write ( resource fd, string data [, int len])|  Writes data to fd with optional truncation at length 
  423. string dirname ( string path)| Retorna o componente diret≤rio de um caminho/path
  424. float disk_free_space ( string diretorio)| Retorna o espaτo disponivel no diret≤rio
  425. float disk_total_space ( string diretorio)| Retorna o tamanho total do diret≤rio
  426. int dl ( string library)| Loads a PHP extension at runtime
  427. string dngettext ( string domφnio, string msgid1, string msgid2, int n)| O mesmo que dgettext, porΘm vocΩ pode escrever mais de uma mensagem
  428. int dns_check_record ( string host [, string type])| Synonym for checkdnsrr()
  429. int dns_get_mx ( string hostname, array mxhosts [, array &weight])| Synonym for getmxrr()
  430. array dns_get_record ( string hostname [, int type [, array &authns, array &addtl]])|  Fetch DNS Resource Records associated with a hostname 
  431. object domxml_new_doc ( string version)|  Creates new empty XML document
  432. object domxml_open_file ( string filename)| Creates a DOM object from XML file
  433. object domxml_open_mem ( string str)| Creates a DOM object of an XML document
  434. string domxml_version ( void )|  Get XML library version 
  435. object domxml_xmltree ( string str)|  Creates a tree of PHP objects from an XML document 
  436. object domxml_xslt_stylesheet ( string xsl document)|  Creates a DomXsltStylesheet Object from a xml document in a string. 
  437. object domxml_xslt_stylesheet_doc ( object DocDocument Object)|  Creates a DomXsltStylesheet Object from a DomDocument Object. 
  438. object domxml_xslt_stylesheet_file ( string xsl file)|  Creates a DomXsltStylesheet Object from a xsl document in a file. 
  439. int dotnet_load ( string assembly_name [, string datatype_name [, int codepage]])| Loads a DOTNET module
  440. array each ( array array)|  Retorna o par chave/valor corrente de um array e avanτa o seu cursor
  441. int easter_date ( [int year])|  Get UNIX timestamp for midnight on Easter of a given year 
  442. int easter_days ( [int year [, int method]])|  Get number of days after March 21 on which Easter falls for a given year 
  443. int ebcdic2ascii ( string ebcdic_str)| Converte uma string de EBCDIC para ASCII
  444. void echo ( string arg1 [, string argn...])| Exibe uma ou mais strings
  445. bool empty ( mixed var)| Determine whether a variable is empty
  446. mixed end ( array array)|  Faz o ponteiro interno de um array apontar para o seu ·ltimo elemento 
  447. bool ereg ( string expressao, string variavel [, array registros])| Casando express⌡es regulares
  448. string ereg_replace ( string expressao, string substituicao, string variavel)| Substituiτπo atravΘs de express⌡es regulares
  449. bool eregi ( string expressao, string variavel [, array registros])| Casando express⌡es regulares insensφveis a mai·sculas e min·sculas
  450. string eregi_replace ( string expressao, string substituicao, string variavel)| substituiτπo utilizando express⌡es regulares insensφveis a mai·sculas e min·sculas
  451. int error_log ( string message [, int message_type [, string destination [, string extra_headers]]])| Send an error message somewhere
  452. int error_reporting ( [int level])| Sets which PHP errors are reported
  453. string escapeshellarg ( string arg)| escape a string to be used as a shell argument
  454. string escapeshellcmd ( string command)| escape shell metacharacters
  455. mixed eval ( string code_str)| Executa uma string como c≤digo PHP
  456. string exec ( string command [, array output [, int return_var]])| Execute an external program
  457. int exif_imagetype ( string filename)| Determine the type of an image
  458. array exif_read_data ( string filename [, string sections [, bool arrays [, bool thumbnail]]])| Reads the EXIF headers from JPEG or TIFF. This way you can read meta data generated by digital cameras.
  459. string exif_thumbnail ( string filename [, int &width [, int &height [, int &imagetype]]])| Retrieve the embedded thumbnail of a TIFF or JPEG image
  460. void exit ( [string status])| Mostra uma mensagem e termina o script atual
  461. float exp ( float arg)| Calcula o expoente de e (Neperiano ou base logarφtmica natural)
  462. array explode ( string separator, string string [, int limit])| Divide uma string em strings
  463. float expm1 ( float numero)|  Retorna exp(numero) - 1, computado de forma que Θ preciso mesmo quando o valor do n·mero Θ perto de zero. 
  464. bool extension_loaded ( string name)| Find out whether an extension is loaded
  465. int extract ( array var_array [, int extract_type [, string prefix]])|  Importa varißveis para a tabela de sφmbolos a partir de um array 
  466. int ezmlm_hash ( string addr)| Calcula o valor do hash necessßrio para EZMLM
  467. int fbsql_affected_rows ( [resource link_identifier])|  Get number of affected rows in previous FrontBase operation 
  468. bool fbsql_autocommit ( resource link_identifier [, bool OnOff])| Enable or disable autocommit
  469. resource fbsql_change_user ( string user, string password [, string database [, resource link_identifier]])|  Change logged in user of the active connection 
  470. bool fbsql_close ( [resource link_identifier])| Close FrontBase connection
  471. bool fbsql_commit ( [resource link_identifier])| Commits a transaction to the database
  472. resource fbsql_connect ( [string hostname [, string username [, string password]]])| Open a connection to a FrontBase Server
  473. string fbsql_create_blob ( string blob_data [, resource link_identifier])| Create a BLOB
  474. string fbsql_create_clob ( string clob_data [, resource link_identifier])| Create a CLOB
  475. bool fbsql_create_db ( string database_name [, resource link_identifier])| Create a FrontBase database
  476. bool fbsql_data_seek ( resource result_identifier, int row_number)| Move internal result pointer
  477. string fbsql_database ( resource link_identifier [, string database])| Get or set the database name used with a connection
  478. string fbsql_database_password ( resource link_identifier [, string database_password])|  Sets or retrieves the password for a FrontBase database 
  479. resource fbsql_db_query ( string database, string query [, resource link_identifier])| Send a FrontBase query
  480. int fbsql_db_status ( string database_name [, resource link_identifier])| Get the status for a given database
  481. bool fbsql_drop_db ( string database_name [, resource link_identifier])| Drop (delete) a FrontBase database
  482. int fbsql_errno ( [resource link_identifier])|  Returns the numerical value of the error message from previous FrontBase operation 
  483. string fbsql_error ( [resource link_identifier])|  Returns the text of the error message from previous FrontBase operation 
  484. array fbsql_fetch_array ( resource result [, int result_type])|  Fetch a result row as an associative array, a numeric array, or both 
  485. array fbsql_fetch_assoc ( resource result)|  Fetch a result row as an associative array 
  486. object fbsql_fetch_field ( resource result [, int field_offset])|  Get column information from a result and return as an object 
  487. array fbsql_fetch_lengths ( [resource result])|  Get the length of each output in a result 
  488. object fbsql_fetch_object ( resource result [, int result_type])| Fetch a result row as an object
  489. array fbsql_fetch_row ( resource result)| Get a result row as an enumerated array
  490. string fbsql_field_flags ( resource result, int field_offset)|  Get the flags associated with the specified field in a result 
  491. int fbsql_field_len ( resource result, int field_offset)|  Returns the length of the specified field 
  492. string fbsql_field_name ( resource result, int field_index)|  Get the name of the specified field in a result 
  493. bool fbsql_field_seek ( resource result, int field_offset)|  Set result pointer to a specified field offset 
  494. string fbsql_field_table ( resource result, int field_offset)|  Get name of the table the specified field is in 
  495. string fbsql_field_type ( resource result, int field_offset)|  Get the type of the specified field in a result 
  496. bool fbsql_free_result ( resource result)| Free result memory
  497. array fbsql_get_autostart_info ( [resource link_identifier])| No description given yet
  498. string fbsql_hostname ( resource link_identifier [, string host_name])| Get or set the host name used with a connection
  499. int fbsql_insert_id ( [resource link_identifier])|  Get the id generated from the previous INSERT operation 
  500. resource fbsql_list_dbs ( [resource link_identifier])|  List databases available on a FrontBase server 
  501. resource fbsql_list_fields ( string database_name, string table_name [, resource link_identifier])| List FrontBase result fields
  502. resource fbsql_list_tables ( string database [, resource link_identifier])| List tables in a FrontBase database
  503. bool fbsql_next_result ( resource result_id)|  Move the internal result pointer to the next result 
  504. int fbsql_num_fields ( resource result)| Get number of fields in result
  505. int fbsql_num_rows ( resource result)| Get number of rows in result
  506. string fbsql_password ( resource link_identifier [, string password])| Get or set the user password used with a connection
  507. resource fbsql_pconnect ( [string hostname [, string username [, string password]]])|  Open a persistent connection to a FrontBase Server 
  508. resource fbsql_query ( string query [, resource link_identifier])| Send a FrontBase query
  509. string fbsql_read_blob ( string blob_handle [, resource link_identifier])| Read a BLOB from the database
  510. string fbsql_read_clob ( string clob_handle [, resource link_identifier])| Read a CLOB from the database
  511. mixed fbsql_result ( resource result, int row [, mixed field])| Get result data
  512. bool fbsql_rollback ( [resource link_identifier])| Rollback a transaction to the database
  513. bool fbsql_select_db ( string database_name [, resource link_identifier])| Select a FrontBase database
  514. bool fbsql_set_lob_mode ( resource result, string database_name)|  Set the LOB retrieve mode for a FrontBase result set 
  515. void fbsql_set_transaction ( resource link_identifier, int Locking, int Isolation)|  Set the transaction locking and isolation 
  516. bool fbsql_start_db ( string database_name [, resource link_identifier])| Start a database on local or remote server
  517. bool fbsql_stop_db ( string database_name [, resource link_identifier])| Stop a database on local or remote server
  518. string fbsql_tablename ( resource result, int i)| Get table name of field
  519. string fbsql_username ( resource link_identifier [, string username])| Get or set the host user used with a connection
  520. bool fbsql_warnings ( [bool OnOff])| Enable or disable FrontBase warnings
  521. bool fclose ( int handle)| Fecha um ponteiro de arquivo aberto
  522. bool fdf_add_doc_javascript ( resource fdfdoc, string script_name, string script_code)| Adds javascript code to the FDF document
  523. bool fdf_add_template ( resource fdfdoc, int newpage, string filename, string template, int rename)| Adds a template into the FDF document
  524. bool fdf_close ( resource fdf_document)| Close an FDF document
  525. resource fdf_create ( void )| Create a new FDF document
  526. bool fdf_enum_values ( resource fdfdoc, callback function [, mixed userdata])| Call a user defined function for each document value 
  527. int fdf_errno ( void )| Return error code for last fdf operation
  528. string fdf_error ( [int error_code])| Return error description for fdf error code
  529. bool fdf_get_ap ( resource fdf_document, string field, int face, string filename)| Get the appearance of a field
  530. array fdf_get_attachment ( resource fdf_document, string fieldname, string savepath)| Extracts uploaded file embedded in the FDF
  531. string fdf_get_encoding ( resource fdf_document)| Get the value of the /Encoding key
  532. string fdf_get_file ( resource fdf_document)| Get the value of the /F key
  533. void fdf_get_flags ( void )| Gets the flags of a field
  534. string fdf_get_status ( resource fdf_document)| Get the value of the /STATUS key
  535. string fdf_get_value ( resource fdf_document, string fieldname [, int which])| Get the value of a field
  536. string fdf_get_version ( [resource fdf_document])| Gets version number for FDF api or file 
  537. bool fdf_header ( void )| Sets FDF-specific output headers
  538. string fdf_next_field_name ( resource fdf_document [, string fieldname])| Get the next field name
  539. resource fdf_open ( string filename)| Open a FDF document
  540. resource fdf_open_string ( string fdf_data)| Read a FDF document from a string
  541. bool fdf_remove_item ( resource fdfdoc, string fieldname, int item)| Sets target frame for form
  542. bool fdf_save ( resource fdf_document [, string filename])| Save a FDF document
  543. string fdf_save_string ( resource fdf_document)| Returns the FDF document as a string
  544. bool fdf_set_ap ( resource fdf_document, string field_name, int face, string filename, int page_number)| Set the appearance of a field
  545. bool fdf_set_encoding ( resource fdf_document, string encoding)| Sets FDF character encoding
  546. bool fdf_set_file ( resource fdf_document, string url [, string target_frame])| Set PDF document to display FDF data in
  547. bool fdf_set_flags ( resource fdf_document, string fieldname, int whichFlags, int newFlags)| Sets a flag of a field
  548. bool fdf_set_javascript_action ( resource fdf_document, string fieldname, int trigger, string script)| Sets an javascript action of a field
  549. bool fdf_set_opt ( resource fdf_document, string fieldname, int element, string str1, string str2)| Sets an option of a field
  550. bool fdf_set_status ( resource fdf_document, string status)| Set the value of the /STATUS key
  551. bool fdf_set_submit_form_action ( resource fdf_document, string fieldname, int trigger, string script, int flags)| Sets a submit form action of a field
  552. bool fdf_set_target_frame ( resource fdf_document, string frame_name)| Set target frame for form display
  553. bool fdf_set_value ( resource fdf_document, string fieldname, mixed value [, int isName])| Set the value of a field
  554. string fdf_set_version ( resource fdf_document, string version)| Sets version number for a FDF file 
  555. bool feof ( resource handle)| Testa pelo fim-de-arquivo (eof) em um ponteiro de arquivo
  556. bool fflush ( resource handle)| Forτa a liberaτπo do buffer para um arquivo
  557. string fgetc ( resource handle)| Le um caracter do ponteiro de arquivo
  558. array fgetcsv ( resource handle, int length [, string delimiter [, string enclosure]])| Le uma linha do ponteiro de arquivos e a interpreta por campos CSV
  559. string fgets ( resource handle [, int length])| Le uma linha de um ponteiro de arquivo
  560. string fgetss ( resource handle, int length [, string allowable_tags])| Ler uma linha de um ponteiro de arquivo e retira as tags HTML
  561. array file ( string filename [, int use_include_path [, int use_include_path]])| Le um arquivo inteiro para um array
  562. bool file_exists ( string nomedoarquivo)| Checa se um arquivo ou diret≤rio existe
  563. string file_get_contents ( string filename [, int use_include_path [, resource context]])| Le todo o conte·do de um arquivo para uma string
  564. int file_put_contents ( string filename, string data [, int flags [, resource context]])| Write a string to a file
  565. int fileatime ( string nomedoarquivo)| ObtΘm o ·ltimo horßrio de acesso do arquivo
  566. int filectime ( string nomedoarquivo)| Ler o tempo de modificaτπo do inode do arquivo
  567. int filegroup ( string nomedoarquivo)| LΩ o grupo do arquivo
  568. int fileinode ( string nomedoarquivo)| LΩ o inode do arquivo
  569. int filemtime ( string nomedoarquivo)| Le o tempo de modificaτπo do arquivo
  570. int fileowner ( string nomedoarquivo)| LΩ o dono (owner) do arquivo
  571. int fileperms ( string filename)| LΩ as permiss⌡es do arquivo
  572. bool filepro ( string directory)| Read and verify the map file
  573. int filepro_fieldcount ( void )| Find out how many fields are in a filePro database
  574. string filepro_fieldname ( int field_number)| Gets the name of a field
  575. string filepro_fieldtype ( int field_number)| Gets the type of a field
  576. int filepro_fieldwidth ( int field_number)| Gets the width of a field
  577. string filepro_retrieve ( int row_number, int field_number)| Retrieves data from a filePro database
  578. int filepro_rowcount ( void )| Find out how many rows are in a filePro database
  579. int filesize ( string nomedoarquivo)| LΩ o tamanho do arquivo
  580. string filetype ( string nomedoarquivo)| LΩ o tipo de arquivo (file type)
  581. float floatval ( mixed var)| Get float value of a variable
  582. bool flock ( int handle, int operation [, int &wouldblock])| Monitor de travamento de arquivos portßtil
  583. float floor ( float valor)| Arredonda fraτ⌡es para baixo
  584. void flush ( void )| Flush the output buffer
  585. float fmod ( float x, float y)| Returns the floating point remainder (modulo) of the division of the arguments
  586. array fnmatch ( string pattern, string string [, int flags])| Verifica se um nome de arquivo bate com padrπo (wildcards)
  587. int fopen ( string filename, string mode [, int use_include_path [, resource zcontext]])| Abri um arquivo ou uma URL
  588. int fpassthru ( int handle)| Imprime todo os dados restantes de um ponteiro de arquivo
  589. int fprintf ( resource handle, string format [, mixed args])| Escreve uma string formatada para um stream
  590. string fread ( int fp, int comprimento)| Leitura binary-safe de arquivo
  591. int frenchtojd ( int month, int day, int year)|  Converts a date from the French Republican Calendar to a Julian Day Count 
  592. string fribidi_log2vis ( string str, string direction, int charset)| Convert a logical string to a visual one
  593. mixed fscanf ( resource handle, string formato [, string var1])| Interpreta a leitura de um arquivo de acordo com um formato
  594. int fseek ( int handle, int offset [, int whence])| Procura (seeks) em um ponteiro de arquivo
  595. int fsockopen ( string target, int port [, int errno [, string errstr [, float timeout]]])|  Open Internet or Unix domain socket connection 
  596. array fstat ( resource handle)| LΩ a informaτπo sobre um arquivo usando um ponteiro de arquivo aberto
  597. int ftell ( resource handle)| Retorna a posiτπo de leitura/gravaτπo do ponteiro do arquivo
  598. int ftok ( string pathname, string proj)|  Convert a pathname and a project identifier to a System V IPC key 
  599. bool ftp_cdup ( resource ftp_stream)| Changes to the parent directory
  600. bool ftp_chdir ( resource ftp_stream, string directory)| Changes directories on a FTP server
  601. string ftp_chmod ( resource ftp_stream, int mode, string filename)| Set permissions on a file via FTP
  602. void ftp_close ( resource ftp_stream)| Closes an FTP connection
  603. resource ftp_connect ( string host [, int port [, int timeout]])| Opens an FTP connection
  604. bool ftp_delete ( resource ftp_stream, string path)| Deletes a file on the FTP server
  605. bool ftp_exec ( resource ftp_stream, string command)| Requests execution of a program on the FTP server
  606. bool ftp_fget ( resource ftp_stream, resource handle, string remote_file, int mode [, int resumepos])| Downloads a file from the FTP server and saves to an open file
  607. bool ftp_fput ( resource ftp_stream, string remote_file, resource handle, int mode [, int startpos])| Uploads from an open file to the FTP server
  608. bool ftp_get ( resource ftp_stream, string local_file, string remote_file, int mode [, int resumepos])| Downloads a file from the FTP server
  609. mixed ftp_get_option ( resource ftp_stream, int option)| Retrieves various runtime behaviours of the current FTP stream
  610. bool ftp_login ( resource ftp_stream, string username, string password)| Logs in to an FTP connection
  611. int ftp_mdtm ( resource ftp_stream, string remote_file)| Returns the last modified time of the given file
  612. string ftp_mkdir ( resource ftp_stream, string directory)| Creates a directory
  613. bool ftp_nb_continue ( resource ftp_stream)| Continues retrieving/sending a file (non-blocking)
  614. bool ftp_nb_fget ( resource ftp_stream, resource handle, string remote_file, int mode [, int resumepos])| Retrieves a file from the FTP server and writes it to an open file (non-blocking)
  615. bool ftp_nb_fput ( resource ftp_stream, string remote_file, resource handle, int mode [, int startpos])| Stores a file from an open file to the FTP server (non-blocking)
  616. bool ftp_nb_get ( resource ftp_stream, string local_file, string remote_file, int mode [, int resumepos])| Retrieves a file from the FTP server and writes it to a local file (non-blocking)
  617. bool ftp_nb_put ( resource ftp_stream, string remote_file, string local_file, int mode [, int startpos])| Stores a file on the FTP server (non-blocking)
  618. array ftp_nlist ( resource ftp_stream, string directory)| Returns a list of files in the given directory
  619. bool ftp_pasv ( resource ftp_stream, bool pasv)| Turns passive mode on or off
  620. bool ftp_put ( resource ftp_stream, string remote_file, string local_file, int mode [, int startpos])| Uploads a file to the FTP server
  621. string ftp_pwd ( resource ftp_stream)| Returns the current directory name
  622. array ftp_raw ( resource ftp_stream, string command)| Sends an arbitrary command to an FTP server
  623. array ftp_rawlist ( resource ftp_stream, string directory)| Returns a detailed list of files in the given directory
  624. bool ftp_rename ( resource ftp_stream, string from, string to)| Renames a file on the FTP server
  625. bool ftp_rmdir ( resource ftp_stream, string directory)| Removes a directory
  626. bool ftp_set_option ( resource ftp_stream, int option, mixed value)| Set miscellaneous runtime FTP options
  627. bool ftp_site ( resource ftp_stream, string cmd)| Sends a SITE command to the server
  628. int ftp_size ( resource ftp_stream, string remote_file)| Returns the size of the given file
  629. resource ftp_ssl_connect ( string host [, int port [, int timeout]])| Opens an Secure SSL-FTP connection
  630. string ftp_systype ( resource ftp_stream)| Returns the system type identifier of the remote FTP server
  631. int ftruncate ( int fp, int comprimento)|  Corta um arquivo para um tamanho especificado. 
  632. mixed func_get_arg ( int arg_num)| Return an item from the argument list
  633. array func_get_args ( void )|  Returns an array comprising a function's argument list 
  634. int func_num_args ( void )|  Returns the number of arguments passed to the function 
  635. bool function_exists ( string function_name)|  Return TRUE if the given function has been defined 
  636. int fwrite ( int fp, string string [, int comprimento])| Gravaτπo em arquivos binary-safe
  637. array gd_info ( void )| Retrieve information about the currently installed GD library
  638. object get_browser ( [string user_agent])|  Diz o que o browser do usußrio pode fazer 
  639. string get_cfg_var ( string varname)|  Gets the value of a PHP configuration option 
  640. string get_class ( object obj)| Retorna o nome da classe de um objeto
  641. array get_class_methods ( mixed class_name)| Retorna uma matriz associativa com nomes de mΘtodos da classe
  642. array get_class_vars ( string class_name)|  Retorna uma matriz das propriedades padrπo da classe 
  643. string get_current_user ( void )|  Gets the name of the owner of the current PHP script 
  644. array get_declared_classes ( void )| Retorna uma matriz com os nomes das classes definidas
  645. array get_defined_constants ( void )|  Returns an associative array with the names of all the constants and their values 
  646. array get_defined_functions ( void )|  Returns an array of all defined functions 
  647. array get_defined_vars ( void )|  Returns an array of all defined variables 
  648. array get_extension_funcs ( string module_name)|  Returns an array with the names of the functions of a module 
  649. array get_html_translation_table ( int table [, int quote_style])|  Retorna a tabela de traduτa⌡ usada por htmlspecialchars() e htmlentities() 
  650. string get_include_path ( void )|  Gets the current include_path configuration option 
  651. array get_included_files ( void )|  Returns an array with the names of included or required files 
  652. array get_loaded_extensions ( void )|  Returns an array with the names of all modules compiled and loaded 
  653. int get_magic_quotes_gpc ( void )|  Gets the current active configuration setting of magic quotes gpc 
  654. int get_magic_quotes_runtime ( void )|  Gets the current active configuration setting of magic_quotes_runtime 
  655. array get_meta_tags ( string filename [, int use_include_path])|  Extracts all meta tag content attributes from a file and returns an array 
  656. array get_object_vars ( object obj)| Retorna uma matriz associativa com as propriedades do objeto
  657. string get_parent_class ( mixed obj)| Devolve o nome da classe pai para o objeto ou classe
  658. string get_resource_type ( resource handle)|  Returns the resource type
  659. array getallheaders ( void )| Obtem todos os headers HTTP
  660. string getcwd ( void )| obtem o diret≤rio atual
  661. array getdate ( [int timestamp])| Consegue informaτ⌡es data/hora
  662. string getenv ( string varname)| Gets the value of an environment variable
  663. string gethostbyaddr ( string ip_address)|  Get the Internet host name corresponding to a given IP address 
  664. string gethostbyname ( string hostname)|  Get the IP address corresponding to a given Internet host name 
  665. array gethostbynamel ( string hostname)|  Get a list of IP addresses corresponding to a given Internet host name 
  666. array getimagesize ( string filename [, array imageinfo])| Get the size of an image
  667. int getlastmod ( void )| Gets time of last page modification
  668. int getmxrr ( string hostname, array mxhosts [, array weight])|  Get MX records corresponding to a given Internet host name 
  669. int getmygid ( void )| Get PHP script owner's GID
  670. int getmyinode ( void )| Gets the inode of the current script
  671. int getmypid ( void )| Gets PHP's process ID
  672. int getmyuid ( void )| Gets PHP script owner's UID
  673. string getopt ( string options)| Gets options from the command line argument list
  674. int getprotobyname ( string name)|  Get protocol number associated with protocol name 
  675. string getprotobynumber ( int number)|  Get protocol name associated with protocol number 
  676. int getrandmax ( void )| Retorna o maior valor alet≤rio possφvel
  677. array getrusage ( [int who])| Gets the current resource usages
  678. int getservbyname ( string service, string protocol)|  Get port number associated with an Internet service and protocol 
  679. string getservbyport ( int port, string protocol)|  Get Internet service which corresponds to port and protocol 
  680. string gettext ( string mensagem)| Procura por uma mensagem no domφnio atual
  681. array gettimeofday ( void )| ObtΘm a hora local
  682. string gettype ( mixed var)| Get the type of a variable
  683. array glob ( string pattern [, int flags])| Localiza diret≤rios/arquivos que combinem com o padrπo
  684. string gmdate ( string format [, int timestamp])| Formata uma data/hora GMT/CUT 
  685. int gmmktime ( int hour, int minute, int second, int month, int day, int year [, int is_dst])| Consegue um timestamp UNIX para uma data GMT
  686. resource gmp_abs ( resource a)| Absolute value
  687. resource gmp_add ( resource a, resource b)| Add numbers
  688. resource gmp_and ( resource a, resource b)| Logical AND
  689. resource gmp_clrbit ( resource &a, int index)| Clear bit
  690. int gmp_cmp ( resource a, resource b)| Compare numbers
  691. resource gmp_com ( resource a)| Calculates one's complement of a
  692. resource gmp_div_q ( resource a, resource b [, int round])| Divide numbers
  693. array gmp_div_qr ( resource n, resource d [, int round])| Divide numbers and get quotient and remainder
  694. resource gmp_div_r ( resource n, resource d [, int round])| Remainder of the division of numbers
  695. resource gmp_divexact ( resource n, resource d)| Exact division of numbers
  696. resource gmp_fact ( int a)| Factorial
  697. resource gmp_gcd ( resource a, resource b)| Calculate GCD
  698. array gmp_gcdext ( resource a, resource b)| Calculate GCD and multipliers
  699. int gmp_hamdist ( resource a, resource b)| Hamming distance
  700. resource gmp_init ( mixed number)| Create GMP number
  701. int gmp_intval ( resource gmpnumber)| Convert GMP number to integer
  702. resource gmp_invert ( resource a, resource b)| Inverse by modulo
  703. int gmp_jacobi ( resource a, resource p)| Jacobi symbol
  704. int gmp_legendre ( resource a, resource p)| Legendre symbol
  705. resource gmp_mod ( resource n, resource d)| Modulo operation
  706. resource gmp_mul ( resource a, resource b)| Multiply numbers
  707. resource gmp_neg ( resource a)| Negate number
  708. resource gmp_or ( resource a, resource b)| Logical OR
  709. bool gmp_perfect_square ( resource a)| Perfect square check
  710. int gmp_popcount ( resource a)| Population count
  711. resource gmp_pow ( resource base, int exp)| Raise number into power
  712. resource gmp_powm ( resource base, resource exp, resource mod)| Raise number into power with modulo
  713. int gmp_prob_prime ( resource a [, int reps])| Check if number is "probably prime"
  714. resource gmp_random ( int limiter)| Random number
  715. int gmp_scan0 ( resource a, int start)| Scan for 0
  716. int gmp_scan1 ( resource a, int start)| Scan for 1
  717. resource gmp_setbit ( resource &a, int index [, bool set_clear])| Set bit
  718. int gmp_sign ( resource a)| Sign of number
  719. resource gmp_sqrt ( resource a)| Square root
  720. array gmp_sqrtrm ( resource a)| Square root with remainder
  721. string gmp_strval ( resource gmpnumber [, int base])| Convert GMP number to string
  722. resource gmp_sub ( resource a, resource b)| Subtract numbers
  723. resource gmp_xor ( resource a, resource b)| Logical XOR
  724. string gmstrftime ( string format [, int timestamp])|  Formata uma hora/data GMT/CUT de acordo com as configuraτ⌡es locais 
  725. int gregoriantojd ( int month, int day, int year)|  Converts a Gregorian date to Julian Day Count 
  726. int gzclose ( resource zp)| Close an open gz-file pointer
  727. string gzcompress ( string data [, int level])| Compress a string
  728. string gzdeflate ( string data [, int level])| Deflate a string
  729. string gzencode ( string data [, int level [, int encoding_mode]])| Create a gzip compressed string
  730. int gzeof ( resource zp)| Test for end-of-file on a gz-file pointer
  731. array gzfile ( string filename [, int use_include_path])| Read entire gz-file into an array
  732. string gzgetc ( resource zp)| Get character from gz-file pointer
  733. string gzgets ( resource zp, int length)| Get line from file pointer
  734. string gzgetss ( resource zp, int length [, string allowable_tags])|  Get line from gz-file pointer and strip HTML tags 
  735. string gzinflate ( string data [, int length])| Inflate a deflated string
  736. resource gzopen ( string filename, string mode [, int use_include_path])| Open gz-file
  737. int gzpassthru ( resource zp)|  Output all remaining data on a gz-file pointer 
  738. string gzread ( resource zp, int length)| Binary-safe gz-file read
  739. int gzrewind ( resource zp)| Rewind the position of a gz-file pointer
  740. int gzseek ( resource zp, int offset)| Seek on a gz-file pointer
  741. int gztell ( resource zp)| Tell gz-file pointer read/write position
  742. string gzuncompress ( string data [, int length])| Uncompress a deflated string
  743. int gzwrite ( resource zp, string string [, int length])| Binary-safe gz-file write
  744. int header ( string string [, bool replace [, int http_response_code]])| Send a raw HTTP header
  745. bool headers_sent ( [string &file [, int &line]])| Checks if or where headers have been sent
  746. string hebrev ( string hebrew_text [, int max_chars_per_line])|  Converte texto l≤gico Hebraico para texto visual 
  747. string hebrevc ( string hebrew_text [, int max_chars_per_line])|  Converte um texto l≤gico Hebrßico para um texto visual com conversπo newline 
  748. int hexdec ( string hex_string)| Hexadecimal para decimal
  749. mixed highlight_file ( string filename [, bool return])| Destaca a sintaxe de um arquivo
  750. mixed highlight_string ( string str [, bool return])| Destaque da sintaxe de uma string
  751. string html_entity_decode ( string string [, int quote_style [, string charset]])|  Converte todas as entidades HTML para os seus caracteres 
  752. string htmlentities ( string string [, int quote_style [, string charset]])|  Converte todos os caracteres para HTML entities 
  753. string htmlspecialchars ( string string [, int quote_style [, string charset]])|  Converte caracteres especiais para a realidade HTML 
  754. string hw_array2objrec ( array object_array)| convert attributes from object array to object record
  755. void hw_changeobject ( int link, int objid, array attributes)|  Changes attributes of an object (obsolete) 
  756. array hw_children ( int connection, int objectID)| object ids of children
  757. array hw_childrenobj ( int connection, int objectID)| object records of children
  758. int hw_close ( int connection)| closes the Hyperwave connection
  759. int hw_connect ( string host, int port, string username, string password)| opens a connection
  760. void hw_connection_info ( int link)|  Prints information about the connection to Hyperwave server 
  761. int hw_cp ( int connection, array object_id_array, int destination_id)| Copies objects
  762. int hw_deleteobject ( int connection, int object_to_delete)| deletes object
  763. int hw_docbyanchor ( int connection, int anchorID)| object id object belonging to anchor
  764. string hw_docbyanchorobj ( int connection, int anchorID)| object record object belonging to anchor
  765. string hw_document_attributes ( int hw_document)| object record of hw_document
  766. string hw_document_bodytag ( int hw_document)| body tag of hw_document
  767. string hw_document_content ( int hw_document)| returns content of hw_document
  768. string hw_document_setcontent ( int hw_document, string content)| sets/replaces content of hw_document
  769. int hw_document_size ( int hw_document)| size of hw_document
  770. string hw_dummy ( int link, int id, int msgid)|  Hyperwave dummy function 
  771. int hw_edittext ( int connection, int hw_document)| retrieve text document
  772. int hw_error ( int connection)| error number
  773. string hw_errormsg ( int connection)| returns error message
  774. int hw_free_document ( int hw_document)| frees hw_document
  775. array hw_getanchors ( int connection, int objectID)| object ids of anchors of document
  776. array hw_getanchorsobj ( int connection, int objectID)| object records of anchors of document
  777. string hw_getandlock ( int connection, int objectID)| return bject record and lock object
  778. array hw_getchildcoll ( int connection, int objectID)| object ids of child collections
  779. array hw_getchildcollobj ( int connection, int objectID)| object records of child collections
  780. array hw_getchilddoccoll ( int connection, int objectID)| object ids of child documents of collection
  781. array hw_getchilddoccollobj ( int connection, int objectID)| object records of child documents of collection
  782. array hw_getobject ( int connection, mixed objectID, string query)| object record
  783. array hw_getobjectbyquery ( int connection, string query, int max_hits)| search object
  784. array hw_getobjectbyquerycoll ( int connection, int objectID, string query, int max_hits)| search object in collection
  785. array hw_getobjectbyquerycollobj ( int connection, int objectID, string query, int max_hits)| search object in collection
  786. array hw_getobjectbyqueryobj ( int connection, string query, int max_hits)| search object
  787. array hw_getparents ( int connection, int objectID)| object ids of parents
  788. array hw_getparentsobj ( int connection, int objectID)| object records of parents
  789. string hw_getrellink ( int link, int rootid, int sourceid, int destid)|  Get link from source to dest relative to rootid 
  790. int hw_getremote ( int connection, int objectID)| Gets a remote document
  791. int hw_getremotechildren ( int connection, string object_record)| Gets children of remote document
  792. array hw_getsrcbydestobj ( int connection, int objectID)| Returns anchors pointing at object
  793. int hw_gettext ( int connection, int objectID [, mixed rootID/prefix])| retrieve text document
  794. string hw_getusername ( int connection)| name of currently logged in user
  795. int hw_identify ( string username, string password)| identifies as user
  796. array hw_incollections ( int connection, array object_id_array, array collection_id_array, int return_collections)| check if object ids in collections
  797. string hw_info ( int connection)| info about connection
  798. int hw_inscoll ( int connection, int objectID, array object_array)| insert collection
  799. int hw_insdoc ( int connection, int parentID, string object_record, string text)| insert document
  800. string hw_insertanchors ( int hwdoc, array anchorecs, array dest [, array urlprefixes])|  Inserts only anchors into text 
  801. int hw_insertdocument ( int connection, int parent_id, int hw_document)| upload any document
  802. int hw_insertobject ( int connection, string object_rec, string parameter)| inserts an object record
  803. int hw_mapid ( int connection, int server_id, int object_id)| Maps global id on virtual local id
  804. int hw_modifyobject ( int connection, int object_to_change, array remove, array add, int mode)| modifies object record
  805. int hw_mv ( int connection, array object_id_array, int source_id, int destination_id)| Moves objects
  806. int hw_new_document ( string object_record, string document_data, int document_size)| create new document
  807. array hw_objrec2array ( string object_record [, array format])| Convert attributes from object record to object array
  808. int hw_output_document ( int hw_document)| prints hw_document
  809. int hw_pconnect ( string host, int port, string username, string password)| make a persistent database connection
  810. int hw_pipedocument ( int connection, int objectID)| retrieve any document
  811. int hw_root ( )| root object id
  812. void hw_setlinkroot ( int link, int rootid)|  Set the id to which links are calculated 
  813. string hw_stat ( int link)|  Returns status string 
  814. int hw_unlock ( int connection, int objectID)| unlock object
  815. int hw_who ( int connection)| List of currently logged in users
  816. object hwapi_hgcsp ( string hostname [, int port])| Returns object of class hw_api
  817. float hypot ( float num1, float num2)|  Retorna a raiz quadrada de (num1*num1 + num2*num2) 
  818. bool ibase_add_user ( string server, string dba_user_name, string dba_user_password, string user_name, string password [, string first_name [, string middle_name [, string last_name]]])|  Add a user to a security database (only for IB6 or later) 
  819. bool ibase_blob_add ( int blob_id, string data)|  Add data into a newly created blob 
  820. bool ibase_blob_cancel ( int blob_id)|  Cancel creating blob 
  821. bool ibase_blob_close ( int blob_id)|  Close blob 
  822. int ibase_blob_create ( [resource link_identifier])|  Creates a new blob for adding data 
  823. bool ibase_blob_echo ( string blob_id_str)|  Output blob contents to browser 
  824. string ibase_blob_get ( int blob_id, int len)|  Get len bytes data from open blob 
  825. string ibase_blob_import ( [resource link_identifier, int file_id])|  Create blob, copy file in it, and close it 
  826. object ibase_blob_info ( string blob_id_str)|  Return blob length and other useful info 
  827. int ibase_blob_open ( string blob_id)|  Open blob for retrieving data parts 
  828. bool ibase_close ( [resource connection_id])|  Close a connection to an InterBase database 
  829. bool ibase_commit ( [resource link_identifier, int trans_number])| Commit a transaction
  830. resource ibase_connect ( string database [, string username [, string password [, string charset [, int buffers [, int dialect [, string role]]]]]])|  Open a connection to an InterBase database 
  831. bool ibase_delete_user ( string server, string dba_user_name, string dba_user_password, string user_name)|  Delete a user from a security database (only for IB6 or later) 
  832. string ibase_errmsg ( void )|  Returns error messages 
  833. resource ibase_execute ( resource query [, int bind_args])| Execute a previously prepared query
  834. array ibase_fetch_assoc ( resource result [, int blob_flag])|  Fetch a result row from a query as an associative array 
  835. object ibase_fetch_object ( resource result_id [, int blob_flag])| Get an object from a InterBase database
  836. array ibase_fetch_row ( resource result_identifier [, int blob_flag])| Fetch a row from an InterBase database
  837. array ibase_field_info ( resource result, int field_number)|  Get information about a field 
  838. bool ibase_free_query ( resource query)|  Free memory allocated by a prepared query 
  839. bool ibase_free_result ( resource result_identifier)| Free a result set
  840. bool ibase_modify_user ( string server, string dba_user_name, string dba_user_password, string user_name, string password [, string first_name [, string middle_name [, string last_name]]])|  Modify a user to a security database (only for IB6 or later) 
  841. int ibase_num_fields ( resource result_id)|  Get the number of fields in a result set 
  842. resource ibase_pconnect ( string database [, string username [, string password [, string charset [, int buffers [, int dialect [, string role]]]]]])|  Creates an persistent connection to an InterBase database 
  843. resource ibase_prepare ( [resource link_identifier, string query])|  Prepare a query for later binding of parameter placeholders and execution 
  844. resource ibase_query ( [resource link_identifier, string query [, int bind_args]])| Execute a query on an InterBase database
  845. bool ibase_rollback ( [resource link_identifier, int trans_number])| Rolls back a transaction
  846. int ibase_timefmt ( string format [, int columntype])|  Sets the format of timestamp, date and time type columns returned from queries 
  847. resource ibase_trans ( [int trans_args [, resource link_identifier]])| Begin a transaction
  848. string iconv ( string in_charset, string out_charset, string str)| Convert string to requested character encoding
  849. array iconv_get_encoding ( [string type])| Get current setting for character encoding conversion
  850. bool iconv_set_encoding ( string type, string charset)| Set current setting for character encoding conversion
  851. int ifx_affected_rows ( int result_id)| Get number of rows affected by a query
  852. void ifx_blobinfile_mode ( int mode)| Set the default blob mode for all select queries
  853. void ifx_byteasvarchar ( int mode)| Set the default byte mode
  854. int ifx_close ( [int link_identifier])| Close Informix connection
  855. int ifx_connect ( [string database [, string userid [, string password]]])| Open Informix server connection
  856. int ifx_copy_blob ( int bid)| Duplicates the given blob object
  857. int ifx_create_blob ( int type, int mode, string param)| Creates an blob object
  858. int ifx_create_char ( string param)| Creates an char object
  859. int ifx_do ( int result_id)|  Execute a previously prepared SQL-statement 
  860. string ifx_error ( void )| Returns error code of last Informix call
  861. string ifx_errormsg ( [int errorcode])| Returns error message of last Informix call
  862. array ifx_fetch_row ( int result_id [, mixed position])| Get row as enumerated array
  863. array ifx_fieldproperties ( int result_id)| List of SQL fieldproperties
  864. array ifx_fieldtypes ( int result_id)| List of Informix SQL fields
  865. int ifx_free_blob ( int bid)| Deletes the blob object
  866. int ifx_free_char ( int bid)| Deletes the char object
  867. int ifx_free_result ( int result_id)| Releases resources for the query
  868. int ifx_get_blob ( int bid)| Return the content of a blob object
  869. int ifx_get_char ( int bid)| Return the content of the char object
  870. array ifx_getsqlca ( int result_id)|  Get the contents of sqlca.sqlerrd[0..5] after a query 
  871. int ifx_htmltbl_result ( int result_id [, string html_table_options])|  Formats all rows of a query into a HTML table 
  872. void ifx_nullformat ( int mode)|  Sets the default return value on a fetch row 
  873. int ifx_num_fields ( int result_id)| Returns the number of columns in the query
  874. int ifx_num_rows ( int result_id)| Count the rows already fetched from a query
  875. int ifx_pconnect ( [string database [, string userid [, string password]]])| Open persistent Informix connection
  876. int ifx_prepare ( string query, int conn_id [, int cursor_def, mixed blobidarray])| Prepare an SQL-statement for execution
  877. int ifx_query ( string query, int link_identifier [, int cursor_type [, mixed blobidarray]])| Send Informix query
  878. void ifx_textasvarchar ( int mode)| Set the default text mode
  879. bool ifx_update_blob ( int bid, string content)| Updates the content of the blob object
  880. int ifx_update_char ( int bid, string content)| Updates the content of the char object
  881. int ifxus_close_slob ( int bid)| Deletes the slob object
  882. int ifxus_create_slob ( int mode)| Creates an slob object and opens it
  883. int ifxus_free_slob ( int bid)| Deletes the slob object
  884. int ifxus_open_slob ( long bid, int mode)| Opens an slob object
  885. int ifxus_read_slob ( long bid, long nbytes)| Reads nbytes of the slob object
  886. int ifxus_seek_slob ( long bid, int mode, long offset)| Sets the current file or seek position
  887. int ifxus_tell_slob ( long bid)| Returns the current file or seek position
  888. int ifxus_write_slob ( long bid, string content)| Writes a string into the slob object
  889. int ignore_user_abort ( [int setting])|  Estabelece se acontecerß o enceramento do script quando o usußrio abortar a conexπo 
  890. int image2wbmp ( resource image [, string filename [, int threshold]])| Output image to browser or file
  891. string image_type_to_mime_type ( int imagetype)| Get Mime-Type for image-type returned by getimagesize, exif_read_data, exif_thumbnail, exif_imagetype
  892. int imagealphablending ( resource image, bool blendmode)| Set the blending mode for an image
  893. bool imageantialias ( int im, bool on)|  Should antialias functions be used or not 
  894. int imagearc ( resource image, int cx, int cy, int w, int h, int s, int e, int color)| Draw a partial ellipse
  895. int imagechar ( resource image, int font, int x, int y, string c, int color)| Draw a character horizontally
  896. int imagecharup ( resource image, int font, int x, int y, string c, int color)| Draw a character vertically
  897. int imagecolorallocate ( resource image, int red, int green, int blue)| Allocate a color for an image
  898. int imagecolorallocatealpha ( resource image, int red, int green, int blue, int alpha)| Allocate a color for an image
  899. int imagecolorat ( resource image, int x, int y)| Get the index of the color of a pixel
  900. int imagecolorclosest ( resource image, int red, int green, int blue)| Get the index of the closest color to the specified color
  901. int imagecolorclosestalpha ( resource image, int red, int green, int blue, int alpha)| Get the index of the closest color to the specified color + alpha
  902. int imagecolorclosesthwb ( resource image, int red, int green, int blue)|  Get the index of the color which has the hue, white and blackness nearest to the given color 
  903. int imagecolordeallocate ( resource image, int color)| De-allocate a color for an image
  904. int imagecolorexact ( resource image, int red, int green, int blue)| Get the index of the specified color
  905. int imagecolorexactalpha ( resource image, int red, int green, int blue, int alpha)| Get the index of the specified color + alpha
  906. bool imagecolormatch ( resource image1, resource image2)|  Makes the colors of the palette version of an image more closely match the true color version 
  907. int imagecolorresolve ( resource image, int red, int green, int blue)|  Get the index of the specified color or its closest possible alternative 
  908. int imagecolorresolvealpha ( resource image, int red, int green, int blue, int alpha)|  Get the index of the specified color + alpha or its closest possible alternative 
  909. bool imagecolorset ( resource image, int index, int red, int green, int blue)| Set the color for the specified palette index
  910. array imagecolorsforindex ( resource image, int index)| Get the colors for an index
  911. int imagecolorstotal ( resource image)| Find out the number of colors in an image's palette
  912. int imagecolortransparent ( resource image [, int color])| Define a color as transparent
  913. int imagecopy ( resource dst_im, resource src_im, int dst_x, int dst_y, int src_x, int src_y, int src_w, int src_h)| Copy part of an image
  914. int imagecopymerge ( resource dst_im, resource src_im, int dst_x, int dst_y, int src_x, int src_y, int src_w, int src_h, int pct)| Copy and merge part of an image
  915. int imagecopymergegray ( resource dst_im, resource src_im, int dst_x, int dst_y, int src_x, int src_y, int src_w, int src_h, int pct)| Copy and merge part of an image with gray scale
  916. int imagecopyresampled ( resource dst_im, resource src_im, int dstX, int dstY, int srcX, int srcY, int dstW, int dstH, int srcW, int srcH)| Copy and resize part of an image with resampling
  917. int imagecopyresized ( resource dst_im, resource src_im, int dstX, int dstY, int srcX, int srcY, int dstW, int dstH, int srcW, int srcH)| Copy and resize part of an image
  918. resource imagecreate ( int x_size, int y_size)| Create a new palette based image
  919. resource imagecreatefromgd ( string filename)| Create a new image from GD file or URL
  920. resource imagecreatefromgd2 ( string filename)| Create a new image from GD2 file or URL
  921. resource imagecreatefromgd2part ( string filename, int srcX, int srcY, int width, int height)| Create a new image from a given part of GD2 file or URL
  922. resource imagecreatefromgif ( string filename)| Create a new image from file or URL
  923. resource imagecreatefromjpeg ( string filename)| Create a new image from file or URL
  924. resource imagecreatefrompng ( string filename)| Create a new image from file or URL
  925. resource imagecreatefromstring ( string image)| Create a new image from the image stream in the string
  926. resource imagecreatefromwbmp ( string filename)| Create a new image from file or URL
  927. resource imagecreatefromxbm ( string filename)| Create a new image from file or URL
  928. resource imagecreatefromxpm ( string filename)| Create a new image from file or URL
  929. resource imagecreatetruecolor ( int x_size, int y_size)| Create a new true color image
  930. int imagedashedline ( resource image, int x1, int y1, int x2, int y2, int color)| Draw a dashed line
  931. int imagedestroy ( resource image)| Destroy an image
  932. int imageellipse ( resource image, int cx, int cy, int w, int h, int color)| Draw an ellipse
  933. int imagefill ( resource image, int x, int y, int color)| Flood fill
  934. int imagefilledarc ( resource image, int cx, int cy, int w, int h, int s, int e, int color, int style)| Draw a partial ellipse and fill it
  935. int imagefilledellipse ( resource image, int cx, int cy, int w, int h, int color)| Draw a filled ellipse
  936. int imagefilledpolygon ( resource image, array points, int num_points, int color)| Draw a filled polygon
  937. int imagefilledrectangle ( resource image, int x1, int y1, int x2, int y2, int color)| Draw a filled rectangle
  938. int imagefilltoborder ( resource image, int x, int y, int border, int color)| Flood fill to specific color
  939. int imagefontheight ( int font)| Get font height
  940. int imagefontwidth ( int font)| Get font width
  941. array imageftbbox ( int size, int angle, string font_file, string text [, array extrainfo])| Give the bounding box of a text using fonts via freetype2
  942. array imagefttext ( resource image, int size, int angle, int x, int y, int col, string font_file, string text [, array extrainfo])| Write text to the image using fonts using FreeType 2
  943. int imagegammacorrect ( resource image, float inputgamma, float outputgamma)| Apply a gamma correction to a GD image
  944. int imagegd ( resource image [, string filename])| Output GD image to browser or file
  945. int imagegd2 ( resource image [, string filename [, int chunk_size [, int type]]])| Output GD2 image
  946. int imagegif ( resource image [, string filename])| Output image to browser or file
  947. int imageinterlace ( resource image [, int interlace])| Enable or disable interlace
  948. bool imageistruecolor ( resource image)| Finds whether an image is a truecolor image.
  949. int imagejpeg ( resource image [, string filename [, int quality]])| Output image to browser or file
  950. int imageline ( resource image, int x1, int y1, int x2, int y2, int color)| Draw a line
  951. int imageloadfont ( string file)| Load a new font
  952. int imagepalettecopy ( resource destination, resource source)| Copy the palette from one image to another
  953. int imagepng ( resource image [, string filename])| Output a PNG image to either the browser or a file
  954. int imagepolygon ( resource image, array points, int num_points, int color)| Draw a polygon
  955. array imagepsbbox ( string text, int font, int size [, int space [, int tightness [, float angle]]])|  Give the bounding box of a text rectangle using PostScript Type1 fonts 
  956. int imagepscopyfont ( int fontindex)|  Make a copy of an already loaded font for further modification 
  957. int imagepsencodefont ( int font_index, string encodingfile)| Change the character encoding vector of a font
  958. bool imagepsextendfont ( int font_index, float extend)| Extend or condense a font
  959. void imagepsfreefont ( int fontindex)| Free memory used by a PostScript Type 1 font
  960. int imagepsloadfont ( string filename)| Load a PostScript Type 1 font from file
  961. bool imagepsslantfont ( int font_index, float slant)| Slant a font
  962. array imagepstext ( resource image, string text, int font, int size, int foreground, int background, int x, int y [, int space [, int tightness [, float angle [, int antialias_steps]]]])| To draw a text string over an image using PostScript Type1 fonts
  963. int imagerectangle ( resource image, int x1, int y1, int x2, int y2, int col)| Draw a rectangle
  964. resource imagerotate ( resource src_im, float angle, int bgd_color)| Rotate an image with a given angle
  965. bool imagesavealpha ( resource image, bool saveflag)|  Set the flag to save full alpha channel information (as opposed to single-color transparency) when saving PNG images. 
  966. int imagesetbrush ( resource image, resource brush)| Set the brush image for line drawing
  967. int imagesetpixel ( resource image, int x, int y, int color)| Set a single pixel
  968. int imagesetstyle ( resource image, array style)| Set the style for line drawing
  969. void imagesetthickness ( resource image, int thickness)| Set the thickness for line drawing
  970. int imagesettile ( resource image, resource tile)| Set the tile image for filling
  971. int imagestring ( resource image, int font, int x, int y, string s, int col)| Draw a string horizontally
  972. int imagestringup ( resource image, int font, int x, int y, string s, int col)| Draw a string vertically
  973. int imagesx ( resource image)| Get image width
  974. int imagesy ( resource image)| Get image height
  975. void imagetruecolortopalette ( resource image, bool dither, int ncolors)| Convert a true color image to a palette image
  976. array imagettfbbox ( int size, int angle, string fontfile, string text)| Give the bounding box of a text using TrueType fonts
  977. array imagettftext ( resource image, int size, int angle, int x, int y, int color, string fontfile, string text)| Write text to the image using TrueType fonts
  978. int imagetypes ( void )| Return the image types supported by this PHP build
  979. int imagewbmp ( resource image [, string filename [, int foreground]])| Output image to browser or file
  980. string imap_8bit ( string string)|  Convert an 8bit string to a quoted-printable string 
  981. array imap_alerts ( void )|  This function returns all IMAP alert messages (if any) that have occurred during this page request or since the alert stack was reset 
  982. bool imap_append ( resource imap_stream, string mbox, string message [, string options])|  Append a string message to a specified mailbox 
  983. string imap_base64 ( string text)| Decode BASE64 encoded text
  984. string imap_binary ( string string)|  Convert an 8bit string to a base64 string 
  985. string imap_body ( resource imap_stream, int msg_number [, int options])| Read the message body
  986. object imap_bodystruct ( resource stream_id, int msg_no, int section)|  Read the structure of a specified body section of a specific message 
  987. object imap_check ( resource imap_stream)| Check current mailbox
  988. bool imap_clearflag_full ( resource stream, string sequence, string flag, string options)| Clears flags on messages
  989. bool imap_close ( resource imap_stream [, int flag])| Close an IMAP stream
  990. bool imap_createmailbox ( resource imap_stream, string mbox)| Create a new mailbox
  991. bool imap_delete ( int imap_stream, int msg_number [, int options])|  Mark a messge for deletion from current mailbox 
  992. bool imap_deletemailbox ( resource imap_stream, string mbox)| Delete a mailbox
  993. array imap_errors ( void )|  This function returns all of the IMAP errors (if any) that have occurred during this page request or since the error stack was reset. 
  994. bool imap_expunge ( resource imap_stream)| Delete all messages marked for deletion
  995. array imap_fetch_overview ( resource imap_stream, string sequence [, int options])|  Read an overview of the information in the headers of the given message 
  996. string imap_fetchbody ( resource imap_stream, int msg_number, string part_number [, flags options])|  Fetch a particular section of the body of the message 
  997. string imap_fetchheader ( resource imap_stream, int msgno, int options)| Returns header for a message
  998. object imap_fetchstructure ( resource imap_stream, int msg_number [, int options])|  Read the structure of a particular message 
  999. array imap_get_quota ( resource imap_stream, string quota_root)|  Retrieve the quota level settings, and usage statics per mailbox 
  1000. array imap_get_quotaroot ( resource imap_stream, string quota_root)|  Retrieve the quota settings per user 
  1001. array imap_getmailboxes ( resource imap_stream, string ref, string pattern)|  Read the list of mailboxes, returning detailed information on each one 
  1002. array imap_getsubscribed ( resource imap_stream, string ref, string pattern)| List all the subscribed mailboxes
  1003. object imap_headerinfo ( resource imap_stream, int msg_number [, int fromlength [, int subjectlength [, string defaulthost]]])| Read the header of the message
  1004. array imap_headers ( resource imap_stream)|  Returns headers for all messages in a mailbox 
  1005. string imap_last_error ( void )|  This function returns the last IMAP error (if any) that occurred during this page request 
  1006. array imap_list ( resource imap_stream, string ref, string pattern)| Read the list of mailboxes
  1007. array imap_listscan ( resource imap_stream, string ref, string pattern, string content)|  Read the list of mailboxes, takes a string to search for in the text of the mailbox
  1008. array imap_lsub ( resource imap_stream, string ref, string pattern)| List all the subscribed mailboxes
  1009. string imap_mail ( string to, string subject, string message [, string additional_headers [, string cc [, string bcc [, string rpath]]]])|  Send an email message 
  1010. string imap_mail_compose ( array envelope, array body)|  Create a MIME message based on given envelope and body sections 
  1011. bool imap_mail_copy ( resource imap_stream, string msglist, string mbox [, int options])| Copy specified messages to a mailbox
  1012. bool imap_mail_move ( resource imap_stream, string msglist, string mbox [, int options])| Move specified messages to a mailbox
  1013. object imap_mailboxmsginfo ( resource imap_stream)| Get information about the current mailbox
  1014. array imap_mime_header_decode ( string text)| Decode MIME header elements
  1015. int imap_msgno ( resource imap_stream, int uid)|  This function returns the message sequence number for the given UID 
  1016. int imap_num_msg ( resource imap_stream)|  Gives the number of messages in the current mailbox 
  1017. int imap_num_recent ( resource imap_stream)| Gives the number of recent messages in current mailbox
  1018. resource imap_open ( string mailbox, string username, string password [, int options])| Open an IMAP stream to a mailbox
  1019. bool imap_ping ( resource imap_stream)| Check if the IMAP stream is still active
  1020. string imap_qprint ( string string)| Convert a quoted-printable string to an 8 bit string
  1021. bool imap_renamemailbox ( resource imap_stream, string old_mbox, string new_mbox)| Rename an old mailbox to new mailbox
  1022. bool imap_reopen ( resource imap_stream, string mailbox [, string options])| Reopen IMAP stream to new mailbox
  1023. array imap_rfc822_parse_adrlist ( string address, string default_host)| Parses an address string
  1024. object imap_rfc822_parse_headers ( string headers [, string defaulthost])| Parse mail headers from a string
  1025. string imap_rfc822_write_address ( string mailbox, string host, string personal)|  Returns a properly formatted email address given the mailbox, host, and personal info. 
  1026. array imap_search ( resource imap_stream, string criteria, int options)|  This function returns an array of messages matching the given search criteria
  1027. bool imap_set_quota ( resource imap_stream, string quota_root, int quota_limit)| Sets a quota for a given mailbox
  1028. bool imap_setacl ( resource stream_id, string mailbox, string id, string rights)|  Sets the ACL for a giving mailbox 
  1029. bool imap_setflag_full ( resource stream, string sequence, string flag, string options)| Sets flags on messages
  1030. array imap_sort ( resource stream, int criteria, int reverse [, int options [, string search_criteria]])| Sort an array of message headers
  1031. object imap_status ( resource imap_stream, string mailbox, int options)|  This function returns status information on a mailbox other than the current one 
  1032. bool imap_subscribe ( resource imap_stream, string mbox)| Subscribe to a mailbox
  1033. array imap_thread ( resource stream_id [, int options])|  Return threaded by REFERENCES tree 
  1034. int imap_uid ( resource imap_stream, int msgno)|  This function returns the UID for the given message sequence number 
  1035. bool imap_undelete ( resource imap_stream, int msg_number)|  Unmark the message which is marked deleted 
  1036. bool imap_unsubscribe ( string imap_stream, string mbox)| Unsubscribe from a mailbox
  1037. string imap_utf7_decode ( string text)|  Decodes a modified UTF-7 encoded string. 
  1038. string imap_utf7_encode ( string data)|  Converts ISO-8859-1 string to modified UTF-7 text. 
  1039. string imap_utf8 ( string mime_encoded_text)|  Converts MIME-encoded text to UTF-8 
  1040. string implode ( string glue, array pieces)| Junta elementos de uma matriz em uma string
  1041. bool import_request_variables ( string types [, string prefix])| Import GET/POST/Cookie variables into the global scope
  1042. bool in_array ( mixed needle, array haystack [, bool strict])| Retorna TRUE se um valor existe no array
  1043. bool ingres_autocommit ( [resource link])| Switch autocommit on or off
  1044. bool ingres_close ( [resource link])| Close an Ingres II database connection
  1045. bool ingres_commit ( [resource link])| Commit a transaction
  1046. resource ingres_connect ( [string database [, string username [, string password]]])|  Open a connection to an Ingres II database 
  1047. array ingres_fetch_array ( [int result_type [, resource link]])| Fetch a row of result into an array
  1048. object ingres_fetch_object ( [int result_type [, resource link]])| Fetch a row of result into an object.
  1049. array ingres_fetch_row ( [resource link])|  Fetch a row of result into an enumerated array 
  1050. int ingres_field_length ( int index [, resource link])| Get the length of a field
  1051. string ingres_field_name ( int index [, resource link])| Get the name of a field in a query result.
  1052. bool ingres_field_nullable ( int index [, resource link])| Test if a field is nullable
  1053. int ingres_field_precision ( int index [, resource link])| Get the precision of a field
  1054. int ingres_field_scale ( int index [, resource link])| Get the scale of a field
  1055. string ingres_field_type ( int index [, resource link])|  Get the type of a field in a query result 
  1056. int ingres_num_fields ( [resource link])|  Get the number of fields returned by the last query 
  1057. int ingres_num_rows ( [resource link])|  Get the number of rows affected or returned by the last query 
  1058. resource ingres_pconnect ( [string database [, string username [, string password]]])|  Open a persistent connection to an Ingres II database 
  1059. bool ingres_query ( string query [, resource link])| Send a SQL query to Ingres II
  1060. bool ingres_rollback ( [resource link])| Roll back a transaction
  1061. string ini_get ( string varname)| Gets the value of a configuration option
  1062. array ini_get_all ( [string extension])| Gets all configuration options
  1063. string ini_restore ( string varname)| Restores the value of a configuration option
  1064. string ini_set ( string varname, string newvalue)| Sets the value of a configuration option
  1065. int intval ( mixed var [, int base])| Get integer value of a variable
  1066. int ip2long ( string ip_address)|  Converts a string containing an (IPv4) Internet Protocol dotted address into a proper address. 
  1067. array iptcembed ( string iptcdata, string jpeg_file_name [, int spool])| Embed binary IPTC data into a JPEG image
  1068. array iptcparse ( string iptcblock)|  Parse a binary IPTC http://www.iptc.org/ block into single tags. 
  1069. bool ircg_channel_mode ( resource connection, string channel, string mode_spec, string nick)|  Set channel mode flags for user 
  1070. bool ircg_disconnect ( resource connection, string reason)|  Close connection to server 
  1071. array ircg_fetch_error_msg ( resource connection)|  Returns the error from previous IRCG operation 
  1072. string ircg_get_username ( resource connection)|  Get username for connection 
  1073. bool ircg_html_encode ( string html_string)|  Encodes HTML preserving output 
  1074. bool ircg_ignore_add ( resource connection, string nick)|  Add a user to your ignore list on a server 
  1075. bool ircg_ignore_del ( resource connection, string nick)|  Remove a user from your ignore list on a server 
  1076. bool ircg_is_conn_alive ( resource connection)|  Check connection status 
  1077. bool ircg_join ( resource connection, string channel [, string key])|  Join a channel on a connected server 
  1078. bool ircg_kick ( resource connection, string channel, string nick, string reason)|  Kick a user out of a channel on server 
  1079. bool ircg_lookup_format_messages ( string name)|  Check for the existence of a format message set 
  1080. bool ircg_msg ( resource connection, string recipient, string message [, boolean suppress])|  Send message to channel or user on server 
  1081. bool ircg_nick ( resource connection, string nick)|  Change nickname on server 
  1082. string ircg_nickname_escape ( string nick)|  Encode special characters in nickname to be IRC-compliant 
  1083. string ircg_nickname_unescape ( string nick)|  Decodes encoded nickname 
  1084. bool ircg_notice ( resource connection, string , string message)|  Send a notice to a user on server 
  1085. bool ircg_part ( resource connection, string channel)|  Leave a channel on server 
  1086. resource ircg_pconnect ( string username [, string server_ip [, int server_port [, string msg_format [, array ctcp_messages [, array user_settings]]]]])|  Connect to an IRC server 
  1087. bool ircg_register_format_messages ( string name, array messages)|  Register a format message set 
  1088. bool ircg_set_current ( resource connection)|  Set current connection for output 
  1089. bool ircg_set_file ( resource connection, string path)|  Set logfile for connection 
  1090. bool ircg_set_on_die ( resource connection, string host, int port, string data)|  Set action to be executed when connection dies 
  1091. bool ircg_topic ( resource connection, string channel, string new_topic)|  Set topic for channel on server 
  1092. bool ircg_whois ( resource connection, string nick)|  Query server for user information 
  1093. bool is_a ( object object, string class_name)|  Retorna TRUE se o objeto Θ desta classe ou tem esta classe como uma de suas classes pai. 
  1094. bool is_array ( mixed var)| Finds whether a variable is an array
  1095. bool is_bool ( mixed var)|  Finds out whether a variable is a boolean 
  1096. bool is_callable ( mixed var [, bool syntax_only [, string callable_name]])|  Verify that the contents of a variable can be called as a function 
  1097. bool is_dir ( string filename)| Diz se o caminho Θ um diret≤rio
  1098. bool is_executable ( string nomedoarquivo)| Diz se um arquivo Θ executßvel
  1099. bool is_file ( string nomedoarquivo)| Diz se o arquivo Θ um arquivo comum (nπo Θ diret≤rio)
  1100. bool is_finite ( float val)|  
  1101. bool is_float ( mixed var)| Finds whether a variable is a float
  1102. bool is_infinite ( float val)|  
  1103. bool is_int ( mixed var)| Find whether a variable is an integer
  1104. bool is_link ( string arquivo)| Diz se o arquivo Θ um link simb≤lico (symbolic link)
  1105. bool is_nan ( float val)|
  1106. bool is_null ( mixed var)|  Finds whether a variable is NULL 
  1107. bool is_numeric ( mixed var)|  Finds whether a variable is a number or a numeric string 
  1108. bool is_object ( mixed var)| Finds whether a variable is an object
  1109. bool is_readable ( string nomedoarquivo)|  Diz se o arquivo Θ legivel (readable) 
  1110. bool is_resource ( mixed var)|  Finds whether a variable is a resource
  1111. bool is_scalar ( mixed var)|  Finds whether a variable is a scalar 
  1112. bool is_string ( mixed var)| Finds whether a variable is a string
  1113. bool is_subclass_of ( object object, string class_name)|  Retorna TRUE se o objeto tem esta classe como uma de suas classes pai 
  1114. bool is_uploaded_file ( string filename)| Diz se o arquivo foi uploaded via HTTP POST
  1115. bool is_writable ( string arquivo)| Diz se pode-se escrever para o arquivo(writable)
  1116. bool is_writeable ( string nomedoarquivo)| Diz se pode-se escrever para o arquivo(writable)
  1117. bool isset ( mixed var [, mixed var [, ...]])| Determine whether a variable is set
  1118. void java_last_exception_clear ( void )| Clear last Java exception
  1119. exception java_last_exception_get ( void )| Get last Java exception
  1120. mixed jddayofweek ( int julianday, int mode)| Returns the day of the week
  1121. string jdmonthname ( int julianday, int mode)| Returns a month name
  1122. string jdtofrench ( int juliandaycount)|  Converts a Julian Day Count to the French Republican Calendar 
  1123. string jdtogregorian ( int julianday)| Converts Julian Day Count to Gregorian date
  1124. string jdtojewish ( int juliandaycount [, bool hebrew [, int fl]])|  Converts a julian day count to a jewish calendar date 
  1125. string jdtojulian ( int julianday)|  Converts a Julian Day Count to a Julian Calendar Date 
  1126. int jdtounix ( int jday)| Convert Julian Day to UNIX timestamp
  1127. int jewishtojd ( int month, int day, int year)|  Converts a date in the Jewish Calendar to Julian Day Count 
  1128. int jpeg2wbmp ( string jpegname, string wbmpname, int d_height, int d_width, int threshold)| Convert JPEG image file to WBMP image file
  1129. int juliantojd ( int month, int day, int year)|  Converts a Julian Calendar date to Julian Day Count 
  1130. mixed key ( array array)| Retorna uma chave de um array associativo
  1131. int krsort ( array array [, int sort_flags])| Ordena um array pelas chaves em ordem descrescente
  1132. int ksort ( array array [, int sort_flags])| Ordena um array pelas chaves
  1133. float lcg_value ( void )| Gerador congruente linear combinado
  1134. string ldap_8859_to_t61 ( string value)|  Translate 8859 characters to t61 characters 
  1135. bool ldap_add ( resource link_identifier, string dn, array entry)| Add entries to LDAP directory
  1136. bool ldap_bind ( resource link_identifier [, string bind_rdn [, string bind_password]])| Bind to LDAP directory
  1137. bool ldap_close ( resource link_identifier)| Close link to LDAP server
  1138. bool ldap_compare ( resource link_identifier, string dn, string attribute, string value)| Compare value of attribute found in entry specified with DN
  1139. resource ldap_connect ( [string hostname [, int port]])| Connect to an LDAP server
  1140. int ldap_count_entries ( resource link_identifier, resource result_identifier)| Count the number of entries in a search
  1141. bool ldap_delete ( resource link_identifier, string dn)| Delete an entry from a directory
  1142. string ldap_dn2ufn ( string dn)| Convert DN to User Friendly Naming format
  1143. string ldap_err2str ( int errno)|  Convert LDAP error number into string error message 
  1144. int ldap_errno ( resource link_identifier)|  Return the LDAP error number of the last LDAP command 
  1145. string ldap_error ( resource link_identifier)|  Return the LDAP error message of the last LDAP command 
  1146. array ldap_explode_dn ( string dn, int with_attrib)| Splits DN into its component parts
  1147. string ldap_first_attribute ( resource link_identifier, resource result_entry_identifier, int ber_identifier)| Return first attribute
  1148. resource ldap_first_entry ( resource link_identifier, resource result_identifier)| Return first result id
  1149. resource ldap_first_reference ( resource link, resource result)|  Return first reference 
  1150. bool ldap_free_result ( resource result_identifier)| Free result memory
  1151. array ldap_get_attributes ( resource link_identifier, resource result_entry_identifier)| Get attributes from a search result entry
  1152. string ldap_get_dn ( resource link_identifier, resource result_entry_identifier)| Get the DN of a result entry
  1153. array ldap_get_entries ( resource link_identifier, resource result_identifier)| Get all result entries
  1154. bool ldap_get_option ( resource link_identifier, int option, mixed retval)| Get the current value for given option
  1155. array ldap_get_values ( resource link_identifier, resource result_entry_identifier, string attribute)| Get all values from a result entry
  1156. array ldap_get_values_len ( resource link_identifier, resource result_entry_identifier, string attribute)| Get all binary values from a result entry
  1157. resource ldap_list ( resource link_identifier, string base_dn, string filter [, array attributes [, int attrsonly [, int sizelimit [, int timelimit [, int deref]]]]])| Single-level search
  1158. bool ldap_mod_add ( resource link_identifier, string dn, array entry)| Add attribute values to current attributes
  1159. bool ldap_mod_del ( resource link_identifier, string dn, array entry)| Delete attribute values from current attributes
  1160. bool ldap_mod_replace ( resoure link_identifier, string dn, array entry)| Replace attribute values with new ones
  1161. bool ldap_modify ( resource link_identifier, string dn, array entry)| Modify an LDAP entry
  1162. string ldap_next_attribute ( resource link_identifier, resource result_entry_identifier, resource ber_identifier)| Get the next attribute in result
  1163. resource ldap_next_entry ( resource link_identifier, resource result_entry_identifier)| Get next result entry
  1164. resource ldap_next_reference ( resource link, resource entry)|  Get next reference 
  1165. bool ldap_parse_reference ( resource link, resource entry, array referrals)|  Extract information from reference entry 
  1166. bool ldap_parse_result ( resource link, resource result, int errcode, string matcheddn, string errmsg, array referrals)|  Extract information from result 
  1167. resource ldap_read ( resource link_identifier, string base_dn, string filter [, array attributes [, int attrsonly [, int sizelimit [, int timelimit [, int deref]]]]])| Read an entry
  1168. bool ldap_rename ( resource link_identifier, string dn, string newrdn, string newparent, bool deleteoldrdn)| Modify the name of an entry
  1169. resource ldap_search ( resource link_identifier, string base_dn, string filter [, array attributes [, int attrsonly [, int sizelimit [, int timelimit [, int deref]]]]])| Search LDAP tree
  1170. bool ldap_set_option ( resource link_identifier, int option, mixed newval)| Set the value of the given option
  1171. bool ldap_set_rebind_proc ( resource link, string callback)|  Set a callback function to do re-binds on referral chasing. 
  1172. bool ldap_sort ( resource link, resource result, string sortfilter)|  Sort LDAP result entries 
  1173. bool ldap_start_tls ( resource link)|  Start TLS 
  1174. string ldap_t61_to_8859 ( string value)|  Translate t61 characters to 8859 characters 
  1175. bool ldap_unbind ( resource link_identifier)| Unbind from LDAP directory
  1176. int levenshtein ( string str1, string str2)|  Calcula a distΓncia Levenshtein entre duas strings 
  1177. int link ( string alvo, string link)| Criando um hard link
  1178. int linkinfo ( string path)| Ler informaτ⌡es sobre um link
  1179. void list ( mixed ...)|  Cria varißveis como se fossem arrays 
  1180. array localeconv ( void )| ObtΘm a informaτπo da formataτπo numΘrica
  1181. array localtime ( [int timestamp [, bool is_associative]])| ObtΘm a hora local
  1182. float log ( float arg)| Logaritmo natural
  1183. float log10 ( float arg)| Logaritmo Base 10
  1184. float log1p ( float number)|  Retorna o log(1 + numero), calculado de forma que o valor do n·mero seja pr≤ximo de zero. 
  1185. string long2ip ( int proper_address)|  Converts an (IPv4) Internet network address into a string in Internet standard dotted format 
  1186. array lstat ( string nomedoarquivo)| Obtem informaτ⌡es sobre um arquivo ou link simb≤lico 
  1187. string ltrim ( string str [, string charlist])|  Retira whitespace do inφcio da string 
  1188. bool mail ( string to, string subject, string message [, string additional_headers [, string additional_parameters]])| Envia email
  1189. int mailparse_determine_best_xfer_encoding ( resource fp)|  Figures out the best way of encoding the content read from the file pointer fp, which must be seek-able 
  1190. int mailparse_msg_create ( void )| Returns a handle that can be used to parse a message 
  1191. void mailparse_msg_extract_part ( resource rfc2045, string msgbody [, string callbackfunc])|  Extracts/decodes a message section. If callbackfunc is not specified, the contents will be sent to "stdout" 
  1192. string mailparse_msg_extract_part_file ( resource rfc2045, string filename [, string callbackfunc])| Extracts/decodes a message section, decoding the transfer encoding 
  1193. void mailparse_msg_free ( resource rfc2045buf)| Frees a handle allocated by mailparse_msg_crea
  1194. int mailparse_msg_get_part ( resource rfc2045, string mimesection)| Returns a handle on a given section in a mimemessage 
  1195. array mailparse_msg_get_part_data ( resource rfc2045)| Returns an associative array of info about the message 
  1196. array mailparse_msg_get_structure ( resource rfc2045)| Returns an array of mime section names in the supplied message 
  1197. void mailparse_msg_parse ( resource rfc2045buf, string data)| Incrementally parse data into buffer 
  1198. resource mailparse_msg_parse_file ( string filename)| Parse file and return a resource representing the structure 
  1199. array mailparse_rfc822_parse_addresses ( string addresses)|  Parse addresses and returns a hash containing that data 
  1200. bool mailparse_stream_encode ( resource sourcefp, resource destfp, string encoding)|  Streams data from source file pointer, apply encoding and write to destfp 
  1201. array mailparse_uudecode_all ( resource fp)|  Scans the data from fp and extract each embedded uuencoded file. Returns an array listing filename information 
  1202. mixed max ( mixed arg1, mixed arg2, mixed argn)| Localiza o maior n·mero
  1203. string mb_convert_case ( string str, int mode [, string encoding])| Perform case folding on a string
  1204. string mb_convert_encoding ( string str, string to-encoding [, mixed from-encoding])| Convert character encoding
  1205. string mb_convert_kana ( string str, string option [, mixed encoding])|  Convert "kana" one from another ("zen-kaku" ,"han-kaku" and more) 
  1206. string mb_convert_variables ( string to-encoding, mixed from-encoding, mixed vars)| Convert character code in variable(s)
  1207. string mb_decode_mimeheader ( string str)| Decode string in MIME header field
  1208. string mb_decode_numericentity ( string str, array convmap [, string encoding])|  Decode HTML numeric string reference to character 
  1209. string mb_detect_encoding ( string str [, mixed encoding-list])| Detect character encoding
  1210. array mb_detect_order ( [mixed encoding-list])|  Set/Get character encoding detection order 
  1211. string mb_encode_mimeheader ( string str [, string charset [, string transfer-encoding [, string linefeed]]])| Encode string for MIME header
  1212. string mb_encode_numericentity ( string str, array convmap [, string encoding])|  Encode character to HTML numeric string reference 
  1213. int mb_ereg ( string pattern, string string [, array regs])| Regular expression match with multibyte support
  1214. bool mb_ereg_match ( string pattern, string string [, string option])|  Regular expression match for multibyte string 
  1215. string mb_ereg_replace ( string pattern, string replacement, string string [, array option])| Replace regular expression with multibyte support
  1216. bool mb_ereg_search ( [string pattern [, string option]])|  Multibyte regular expression match for predefined multibyte string 
  1217. array mb_ereg_search_getpos ( void )|  Returns start point for next regular expression match 
  1218. array mb_ereg_search_getregs ( void )|  Retrive the result from the last multibyte regular expression match 
  1219. array mb_ereg_search_init ( string string [, string pattern [, string option]])|  Setup string and regular expression for multibyte regular expression match 
  1220. array mb_ereg_search_pos ( [string pattern [, string option]])|  Return position and length of matched part of multibyte regular expression for predefined multibyte string 
  1221. array mb_ereg_search_regs ( [string pattern [, string option]])|  Returns the matched part of multibyte regular expression 
  1222. array mb_ereg_search_setpos ( void )|  Set start point of next regular expression match 
  1223. int mb_eregi ( string pattern, string string [, array regs])|  Regular expression match ignoring case with multibyte support 
  1224. string mb_eregi_replace ( string pattern, string replace, string string)|  Replace regular expression with multibyte support ignoring case 
  1225. string mb_get_info ( [string type])| Get internal settings of mbstring
  1226. string mb_http_input ( [string type])| Detect HTTP input character encoding
  1227. string mb_http_output ( [string encoding])| Set/Get HTTP output character encoding
  1228. string mb_internal_encoding ( [string encoding])|  Set/Get internal character encoding 
  1229. string mb_language ( [string language])|  Set/Get current language 
  1230. string mb_output_handler ( string contents, int status)|  Callback function converts character encoding in output buffer 
  1231. bool mb_parse_str ( string encoded_string [, array result])|  Parse GET/POST/COOKIE data and set global variable 
  1232. string mb_preferred_mime_name ( string encoding)| Get MIME charset string
  1233. string mb_regex_encoding ( [string encoding])|  Returns current encoding for multibyte regex as string 
  1234. string mb_regex_set_options ( [string options])|  Set/Get the default options for mbregex functions 
  1235. bool mb_send_mail ( string to, string subject, string message [, string additional_headers [, string additional_parameter]])|  Send encoded mail. 
  1236. array mb_split ( string pattern, string string [, int limit])| Split multibyte string using regular expression
  1237. string mb_strcut ( string str, int start [, int length [, string encoding]])| Get part of string
  1238. string mb_strimwidth ( string str, int start, int width, string trimmarker [, string encoding])| Get truncated string with specified width
  1239. string mb_strlen ( string str [, string encoding])| Get string length
  1240. int mb_strpos ( string haystack, string needle [, int offset [, string encoding]])|  Find position of first occurrence of string in a string 
  1241. int mb_strrpos ( string haystack, string needle [, string encoding])|  Find position of last occurrence of a string in a string 
  1242. string mb_strtolower ( string str [, string encoding])| Make a string lowercase
  1243. string mb_strtoupper ( string str [, string encoding])| Make a string uppercase
  1244. int mb_strwidth ( string str [, string encoding])| Return width of string
  1245. mixed mb_substitute_character ( [mixed substrchar])| Set/Get substitution character
  1246. string mb_substr ( string str, int start [, int length [, string encoding]])| Get part of string
  1247. int mb_substr_count ( string haystack, string needle [, string encoding])| Count the number of substring occurrences
  1248. int mcal_append_event ( int mcal_stream)| Store a new event into an MCAL calendar
  1249. int mcal_close ( int mcal_stream, int flags)| Close an MCAL stream
  1250. string mcal_create_calendar ( int stream, string calendar)| Create a new MCAL calendar 
  1251. int mcal_date_compare ( int a_year, int a_month, int a_day, int b_year, int b_month, int b_day)| Compares two dates
  1252. int mcal_date_valid ( int year, int month, int day)|  Returns TRUE if the given year, month, day is a valid date 
  1253. int mcal_day_of_week ( int year, int month, int day)|  Returns the day of the week of the given date 
  1254. int mcal_day_of_year ( int year, int month, int day)|  Returns the day of the year of the given date 
  1255. int mcal_days_in_month ( int month, int leap_year)|  Returns the number of days in a month 
  1256. string mcal_delete_calendar ( int stream, string calendar)| Delete an MCAL calendar
  1257. int mcal_delete_event ( int mcal_stream [, int event_id])| Delete an event from an MCAL calendar
  1258. void mcal_event_add_attribute ( int stream, string attribute, string value)|  Adds an attribute and a value to the streams global event structure 
  1259. int mcal_event_init ( int stream)|  Initializes a streams global event structure 
  1260. int mcal_event_set_alarm ( int stream, int alarm)|  Sets the alarm of the streams global event structure 
  1261. int mcal_event_set_category ( int stream, string category)|  Sets the category of the streams global event structure 
  1262. int mcal_event_set_class ( int stream, int class)|  Sets the class of the streams global event structure 
  1263. int mcal_event_set_description ( int stream, string description)|  Sets the description of the streams global event structure 
  1264. int mcal_event_set_end ( int stream, int year, int month [, int day [, int hour [, int min [, int sec]]]])|  Sets the end date and time of the streams global event structure 
  1265. int mcal_event_set_recur_daily ( int stream, int year, int month, int day, int interval)|  Sets the recurrence of the streams global event structure 
  1266. int mcal_event_set_recur_monthly_mday ( int stream, int year, int month, int day, int interval)|  Sets the recurrence of the streams global event structure 
  1267. int mcal_event_set_recur_monthly_wday ( int stream, int year, int month, int day, int interval)|  Sets the recurrence of the streams global event structure 
  1268. int mcal_event_set_recur_none ( int stream)|  Sets the recurrence of the streams global event structure 
  1269. int mcal_event_set_recur_weekly ( int stream, int year, int month, int day, int interval, int weekdays)|  Sets the recurrence of the streams global event structure 
  1270. int mcal_event_set_recur_yearly ( int stream, int year, int month, int day, int interval)|  Sets the recurrence of the streams global event structure 
  1271. int mcal_event_set_start ( int stream, int year, int month [, int day [, int hour [, int min [, int sec]]]])|  Sets the start date and time of the streams global event structure 
  1272. int mcal_event_set_title ( int stream, string title)|  Sets the title of the streams global event structure 
  1273. int mcal_expunge ( int stream)|  Deletes all events marked for being expunged. 
  1274. object mcal_fetch_current_stream_event ( int stream)|  Returns an object containing the current streams event structure 
  1275. object mcal_fetch_event ( int mcal_stream, int event_id [, int options])|  Fetches an event from the calendar stream 
  1276. int mcal_is_leap_year ( int year)|  Returns if the given year is a leap year or not 
  1277. array mcal_list_alarms ( int mcal_stream [, int begin_year [, int begin_month [, int begin_day [, int end_year [, int end_month [, int end_day]]]]]])|  Return a list of events that has an alarm triggered at the given datetime 
  1278. array mcal_list_events ( int mcal_stream, object begin_date [, object end_date])|  Return a list of IDs for a date or a range of dates 
  1279. int mcal_next_recurrence ( int stream, int weekstart, array next)| Returns the next recurrence of the event
  1280. int mcal_open ( string calendar, string username, string password [, int options])| Opens up an MCAL connection
  1281. int mcal_popen ( string calendar, string username, string password [, int options])| Opens up a persistent MCAL connection
  1282. string mcal_rename_calendar ( int stream, string old_name, string new_name)| Rename an MCAL calendar 
  1283. int mcal_reopen ( string calendar [, int options])| Reopens an MCAL connection
  1284. bool mcal_snooze ( int stream_id, int event_id)| Turn off an alarm for an event
  1285. int mcal_store_event ( int mcal_stream)| Modify an existing event in an MCAL calendar
  1286. int mcal_time_valid ( int hour, int minutes, int seconds)|  Returns TRUE if the given year, month, day is a valid time 
  1287. int mcal_week_of_year ( int day, int month, int year)|  Returns the week number of the given date
  1288. string mcrypt_cbc ( int cipher, string key, string data, int mode [, string iv])| Encrypt/decrypt data in CBC mode
  1289. string mcrypt_cfb ( int cipher, string key, string data, int mode, string iv)| Encrypt/decrypt data in CFB mode
  1290. string mcrypt_create_iv ( int size, int source)|  Create an initialization vector (IV) from a random source 
  1291. string mcrypt_decrypt ( string cipher, string key, string data, string mode [, string iv])| Decrypts crypttext with given parameters
  1292. string mcrypt_ecb ( int cipher, string key, string data, int mode)| Encrypt/decrypt data in ECB mode
  1293. string mcrypt_enc_get_algorithms_name ( resource td)| Returns the name of the opened algorithm
  1294. int mcrypt_enc_get_block_size ( resource td)| Returns the blocksize of the opened algorithm
  1295. int mcrypt_enc_get_iv_size ( resource td)| Returns the size of the IV of the opened algorithm
  1296. int mcrypt_enc_get_key_size ( resource td)| Returns the maximum supported keysize of the opened mode
  1297. string mcrypt_enc_get_modes_name ( resource td)| Returns the name of the opened mode
  1298. array mcrypt_enc_get_supported_key_sizes ( resource td)| Returns an array with the supported keysizes of the opened algorithm
  1299. bool mcrypt_enc_is_block_algorithm ( resource td)| Checks whether the algorithm of the opened mode is a block algorithm
  1300. bool mcrypt_enc_is_block_algorithm_mode ( resource td)| Checks whether the encryption of the opened mode works on blocks
  1301. bool mcrypt_enc_is_block_mode ( resource td)| Checks whether the opened mode outputs blocks
  1302. bool mcrypt_enc_self_test ( resource td)| This function runs a self test on the opened module
  1303. string mcrypt_encrypt ( string cipher, string key, string data, string mode [, string iv])| Encrypts plaintext with given parameters
  1304. string mcrypt_generic ( resource td, string data)| This function encrypts data
  1305. bool mcrypt_generic_deinit ( resource td)|  This function deinitializes an encryption module 
  1306. bool mcrypt_generic_end ( resource td)| This function terminates encryption
  1307. int mcrypt_generic_init ( resource td, string key, string iv)| This function initializes all buffers needed for encryption
  1308. int mcrypt_get_block_size ( int cipher)| Get the block size of the specified cipher
  1309. string mcrypt_get_cipher_name ( int cipher)| Get the name of the specified cipher
  1310. int mcrypt_get_iv_size ( resource td)|  Returns the size of the IV belonging to a specific cipher/mode combination 
  1311. int mcrypt_get_key_size ( int cipher)| Get the key size of the specified cipher
  1312. array mcrypt_list_algorithms ( [string lib_dir])| Get an array of all supported ciphers
  1313. array mcrypt_list_modes ( [string lib_dir])| Get an array of all supported modes
  1314. bool mcrypt_module_close ( resource td)|  Close the mcrypt module 
  1315. int mcrypt_module_get_algo_block_size ( string algorithm [, string lib_dir])| Returns the blocksize of the specified algorithm
  1316. int mcrypt_module_get_algo_key_size ( string algorithm [, string lib_dir])| Returns the maximum supported keysize of the opened mode
  1317. array mcrypt_module_get_supported_key_sizes ( string algorithm [, string lib_dir])| Returns an array with the supported keysizes of the opened algorithm
  1318. bool mcrypt_module_is_block_algorithm ( string algorithm [, string lib_dir])| This function checks whether the specified algorithm is a block algorithm
  1319. bool mcrypt_module_is_block_algorithm_mode ( string mode [, string lib_dir])| This function returns if the the specified module is a block algorithm or not
  1320. bool mcrypt_module_is_block_mode ( string mode [, string lib_dir])| This function returns if the the specified mode outputs blocks or not
  1321. resource mcrypt_module_open ( string algorithm, string algorithm_directory, string mode, string mode_directory)| Opens the module of the algorithm and the mode to be used
  1322. bool mcrypt_module_self_test ( string algorithm [, string lib_dir])| This function runs a self test on the specified module
  1323. string mcrypt_ofb ( int cipher, string key, string data, int mode, string iv)| Encrypt/decrypt data in OFB mode
  1324. int mcve_adduser ( resource conn, string admin_password, int usersetup)|  Add an MCVE user using usersetup structure 
  1325. int mcve_adduserarg ( resource usersetup, int argtype, string argval)|  Add a value to user configuration structure 
  1326. int mcve_bt ( resource conn, string username, string password)|  Get unsettled batch totals 
  1327. int mcve_checkstatus ( resource conn, int identifier)|  Check to see if a transaction has completed 
  1328. int mcve_chkpwd ( resource conn, string username, string password)|  Verify Password 
  1329. int mcve_chngpwd ( resource conn, string admin_password, string new_password)|  Change the system administrator's password 
  1330. int mcve_completeauthorizations ( resource conn, int &array)|  Number of complete authorizations in queue, returning an array of their identifiers 
  1331. int mcve_connect ( resource conn)|  Establish the connection to MCVE 
  1332. string mcve_connectionerror ( resource conn)|  Get a textual representation of why a connection failed 
  1333. bool mcve_deleteresponse ( resource conn, int identifier)|  Delete specified transaction from MCVE_CONN structure 
  1334. bool mcve_deletetrans ( resource conn, int identifier)|  Delete specified transaction from MCVE_CONN structure 
  1335. void mcve_deleteusersetup ( resource usersetup)|  Deallocate data associated with usersetup structure 
  1336. int mcve_deluser ( resource conn, string admin_password, string username)|  Delete an MCVE user account 
  1337. void mcve_destroyconn ( resource conn)|  Destroy the connection and MCVE_CONN structure 
  1338. void mcve_destroyengine ( void )|  Free memory associated with IP/SSL connectivity 
  1339. int mcve_disableuser ( resource conn, string admin_password, string username)|  Disable an active MCVE user account 
  1340. int mcve_edituser ( resource conn, string admin_password, int usersetup)|  Edit MCVE user using usersetup structure 
  1341. int mcve_enableuser ( resource conn, string admin_password, string username)|  Enable an inactive MCVE user account 
  1342. int mcve_force ( resiurce conn, string username, string password, string trackdata, string account, string expdate, float amount, string authcode, string comments, string clerkid, string stationid, int ptrannum)|  Send a FORCE to MCVE. (typically, a phone-authorization) 
  1343. string mcve_getcell ( resource conn, int identifier, string column, int row)|  Get a specific cell from a comma delimited response by column name 
  1344. string mcve_getcellbynum ( resource conn, int identifier, int column, int row)|  Get a specific cell from a comma delimited response by column number 
  1345. string mcve_getcommadelimited ( resource conn, int identifier)|  Get the RAW comma delimited data returned from MCVE 
  1346. string mcve_getheader ( resource conn, int identifier, int column_num)|  Get the name of the column in a comma-delimited response 
  1347. string mcve_getuserarg ( resource usersetup, int argtype)|  Grab a value from usersetup structure 
  1348. string mcve_getuserparam ( resource conn, long identifier, int key)|  Get a user response parameter 
  1349. int mcve_gft ( resource conn, string username, string password, int type, string account, string clerkid, string stationid, string comments, int ptrannum, string startdate, string enddate)|  Audit MCVE for Failed transactions 
  1350. int mcve_gl ( int conn, string username, string password, int type, string account, string batch, string clerkid, string stationid, string comments, int ptrannum, string startdate, string enddate)|  Audit MCVE for settled transactions 
  1351. int mcve_gut ( resource conn, string username, string password, int type, string account, string clerkid, string stationid, string comments, int ptrannum, string startdate, string enddate)|  Audit MCVE for Unsettled Transactions 
  1352. resource mcve_initconn ( void )|  Create and initialize an MCVE_CONN structure 
  1353. int mcve_initengine ( string location)|  Ready the client for IP/SSL Communication 
  1354. resource mcve_initusersetup ( void )|  Initialize structure to store user data 
  1355. int mcve_iscommadelimited ( resource conn, int identifier)|  Checks to see if response is comma delimited 
  1356. int mcve_liststats ( resource conn, string admin_password)|  List statistics for all users on MCVE system 
  1357. int mcve_listusers ( resource conn, string admin_password)|  List all users on MCVE system 
  1358. bool mcve_maxconntimeout ( resource conn, int secs)|  The maximum amount of time the API will attempt a connection to MCVE 
  1359. int mcve_monitor ( resource conn)|  Perform communication with MCVE (send/receive data) Non-blocking 
  1360. int mcve_numcolumns ( resource conn, int identifier)|  Number of columns returned in a comma delimited response 
  1361. int mcve_numrows ( resource conn, int identifier)|  Number of rows returned in a comma delimited response 
  1362. int mcve_override ( resource conn, string username, string password, string trackdata, string account, string expdate, float amount, string street, string zip, string cv, string comments, string clerkid, string stationid, int ptrannum)|  Send an OVERRIDE to MCVE 
  1363. int mcve_parsecommadelimited ( resource conn, int identifier)|  Parse the comma delimited response so mcve_getcell, etc will work 
  1364. int mcve_ping ( resource conn)|  Send a ping request to MCVE 
  1365. int mcve_preauth ( resource conn, string username, string password, string trackdata, string account, string expdate, float amount, string street, string zip, string cv, string comments, string clerkid, string stationid, int ptrannum)|  Send a PREAUTHORIZATION to MCVE 
  1366. int mcve_preauthcompletion ( resource conn, string username, string password, float finalamount, int sid, int ptrannum)|  Complete a PREAUTHORIZATION... Ready it for settlement 
  1367. int mcve_qc ( resource conn, string username, string password, string clerkid, string stationid, string comments, int ptrannum)|  Audit MCVE for a list of transactions in the outgoing queue 
  1368. string mcve_responseparam ( resource conn, long identifier, string key)|  Get a custom response parameter 
  1369. int mcve_return ( int conn, string username, string password, string trackdata, string account, string expdate, float amount, string comments, string clerkid, string stationid, int ptrannum)|  Issue a RETURN or CREDIT to MCVE 
  1370. int mcve_returncode ( resource conn, int identifier)|  Grab the exact return code from the transaction 
  1371. int mcve_returnstatus ( resource conn, int identifier)|  Check to see if the transaction was successful 
  1372. int mcve_sale ( resource conn, string username, string password, string trackdata, string account, string expdate, float amount, string street, string zip, string cv, string comments, string clerkid, string stationid, int ptrannum)|  Send a SALE to MCVE 
  1373. int mcve_setblocking ( resource conn, int tf)|  Set blocking/non-blocking mode for connection 
  1374. int mcve_setdropfile ( resource conn, string directory)|  Set the connection method to Drop-File 
  1375. int mcve_setip ( resource conn, string host, int port)|  Set the connection method to IP 
  1376. int mcve_setssl ( resource conn, string host, int port)|  Set the connection method to SSL 
  1377. int mcve_setssl_files ( string sslkeyfile, string sslcertfile)|  Set certificate key files and certificates if server requires client certificate verification 
  1378. int mcve_settimeout ( resource conn, int seconds)|  Set maximum transaction time (per trans) 
  1379. int mcve_settle ( resource conn, string username, string password, string batch)|  Issue a settlement command to do a batch deposit 
  1380. string mcve_text_avs ( string code)|  Get a textual representation of the return_avs 
  1381. string mcve_text_code ( string code)|  Get a textual representation of the return_code 
  1382. string mcve_text_cv ( int code)|  Get a textual representation of the return_cv 
  1383. string mcve_transactionauth ( resource conn, int identifier)|  Get the authorization number returned for the transaction (alpha-numeric) 
  1384. int mcve_transactionavs ( resource conn, int identifier)|  Get the Address Verification return status 
  1385. int mcve_transactionbatch ( resource conn, int identifier)|  Get the batch number associated with the transaction 
  1386. int mcve_transactioncv ( resource conn, int identifier)|  Get the CVC2/CVV2/CID return status 
  1387. int mcve_transactionid ( resource conn, int identifier)|  Get the unique system id for the transaction 
  1388. int mcve_transactionitem ( resource conn, int identifier)|  Get the ITEM number in the associated batch for this transaction 
  1389. int mcve_transactionssent ( resource conn)|  Check to see if outgoing buffer is clear 
  1390. string mcve_transactiontext ( resource conn, int identifier)|  Get verbiage (text) return from MCVE or processing institution 
  1391. int mcve_transinqueue ( resource conn)|  Number of transactions in client-queue 
  1392. int mcve_transnew ( resource conn)|  Start a new transaction 
  1393. int mcve_transparam ( resource conn, long identifier, int key)|  Add a parameter to a transaction 
  1394. int mcve_transsend ( resource conn, long identifier)|  Finalize and send the transaction 
  1395. int mcve_ub ( resource conn, string username, string password)|  Get a list of all Unsettled batches 
  1396. int mcve_uwait ( long microsecs)|  Wait x microsecs 
  1397. bool mcve_verifyconnection ( resource conn, int tf)|  Set whether or not to PING upon connect to verify connection 
  1398. bool mcve_verifysslcert ( resource conn, int tf)|  Set whether or not to verify the server ssl certificate 
  1399. int mcve_void ( resource conn, string username, string password, int sid, int ptrannum)|  VOID a transaction in the settlement queue 
  1400. string md5 ( string str)| Calcula hash md5 de uma string
  1401. string md5_file ( string filename [, bool raw_output])| Calcula hash md5 de um dado arquivo
  1402. string mdecrypt_generic ( resource td, string data)| Decrypt data
  1403. int memory_get_usage ( void )| Returns the amount of memory allocated to PHP
  1404. string metaphone ( string str)| Calcula a metaphone key de uma string
  1405. bool method_exists ( object object, string method_name)| Checa se o mΘtodo da classe existe
  1406. string mhash ( int hash, string data, string [ key ])| Computar a hash
  1407. int mhash_count ( void )| Ler o mais alto hash id disponφvel
  1408. int mhash_get_block_size ( int hash)| Ler o tamanho do bloco da hash especφficada
  1409. string mhash_get_hash_name ( int hash)| Ler o nome da hash especificada
  1410. string mhash_keygen_s2k ( int hash, string password, string salt, int bytes)| Gerar uma chave
  1411. string microtime ( void )|  Retorna um timestamp UNIX com microsegundos
  1412. string mime_content_type ( string filename)| Detect MIME Content-type for a file
  1413. number min ( number arg1, number arg2 [, ...])| Localiza o menor n·mero
  1414. void ming_setcubicthreshold ( int threshold)|  Set cubic threshold (?) 
  1415. void ming_setscale ( int scale)|  Set scale (?) 
  1416. void ming_useswfversion ( int version)|  Use SWF version (?) 
  1417. int mkdir ( string pathname, int mode)| Criar um diret≤rio
  1418. int mktime ( int hour, int minute, int second, int month, int day, int year [, int is_dst])| ObtΘm um modelo UNIX para uma data
  1419. string money_format ( string format, float number)| Formats a number as a currency string
  1420. bool move_uploaded_file ( string nomedoarquivo, string destino)| Move um arquivo carregado para uma nova localizaτπo
  1421. bool msession_connect ( string host, string port)| Connect to msession server 
  1422. int msession_count ( void )| Get session count 
  1423. bool msession_create ( string session)| Create a session 
  1424. bool msession_destroy ( string name)| Destroy a session 
  1425. void msession_disconnect ( void )| Close connection to msession server 
  1426. array msession_find ( string name, string value)| Find value 
  1427. string msession_get ( string session, string name, string value)| Get value from session 
  1428. array msession_get_array ( string session)| Get array of ... ? 
  1429. string msession_getdata ( string session)| Get data ... ? 
  1430. string msession_inc ( string session, string name)| Increment value in session 
  1431. array msession_list ( void )| List ... ? 
  1432. array msession_listvar ( string name)| List sessions with variable
  1433. int msession_lock ( string name)| Lock a session 
  1434. string msession_plugin ( string session, string val [, string param])| Call an escape function within the msession personality plugin
  1435. string msession_randstr ( int param)| Get random string 
  1436. bool msession_set ( string session, string name, string value)| Set value in session 
  1437. bool msession_set_array ( string session, array tuples)| Set array of ... 
  1438. bool msession_setdata ( string session, string value)| Set data ... ?
  1439. int msession_timeout ( string session [, int param])| Set/get session timeout 
  1440. string msession_uniq ( int param)| Get uniq id 
  1441. int msession_unlock ( string session, int key)| Unlock a session 
  1442. int msg_get_queue ( int key [, int perms])|  Create or attach to a message queue 
  1443. bool msg_receive ( int queue, int desiredmsgtype, int msgtype, int maxsize, mixed message [, bool unserialize [, int flags [, int errorcode]]])|  Receive a message from a message queue 
  1444. bool msg_remove_queue ( int queue)|  Destroy a message queue 
  1445. bool msg_send ( int queue, int msgtype, mixed message [, bool serialize [, bool blocking [, int errorcode]]])|  Send a message to a message queue 
  1446. bool msg_set_queue ( int queue, array data)|  Set information in the message queue data structure 
  1447. array msg_stat_queue ( int queue)|  Returns information from the message queue data structure 
  1448. int msql ( string database, string query, int link_identifier)| Send mSQL query
  1449. int msql_affected_rows ( int query_identifier)| Returns number of affected rows
  1450. int msql_close ( int link_identifier)| Close mSQL connection
  1451. int msql_connect ( [string hostname [, string server [, string username [, string password]]]])| Open mSQL connection
  1452. int msql_create_db ( string database_name [, int link_identifier])| Create mSQL database
  1453. int msql_createdb ( string database_name [, int link_identifier])| Create mSQL database
  1454. int msql_data_seek ( int query_identifier, int row_number)| Move internal row pointer
  1455. string msql_dbname ( int query_identifier, int i)| Get current mSQL database name
  1456. int msql_drop_db ( string database_name, int link_identifier)| Drop (delete) mSQL database
  1457. string msql_error ( [int link_identifier])| Returns error message of last msql call
  1458. int msql_fetch_array ( int query_identifier [, int result_type])| Fetch row as array
  1459. object msql_fetch_field ( int query_identifier, int field_offset)| Get field information
  1460. int msql_fetch_object ( int query_identifier [, int result_type])| Fetch row as object
  1461. array msql_fetch_row ( int query_identifier)| Get row as enumerated array
  1462. int msql_field_seek ( int query_identifier, int field_offset)| Set field offset
  1463. string msql_fieldflags ( int query_identifier, int i)| Get field flags
  1464. int msql_fieldlen ( int query_identifier, int i)| Get field length
  1465. string msql_fieldname ( int query_identifier, int field)| Get field name
  1466. int msql_fieldtable ( int query_identifier, int field)| Get table name for field
  1467. string msql_fieldtype ( int query_identifier, int i)| Get field type
  1468. int msql_free_result ( int query_identifier)| Free result memory
  1469. int msql_list_dbs ( void )| List mSQL databases on server
  1470. int msql_list_fields ( string database, string tablename)| List result fields
  1471. int msql_list_tables ( string database)| List tables in an mSQL database
  1472. int msql_num_fields ( int query_identifier)| Get number of fields in result
  1473. int msql_num_rows ( int query_identifier)| Get number of rows in result
  1474. int msql_numfields ( int query_identifier)| Get number of fields in result
  1475. int msql_numrows ( void )| Get number of rows in result
  1476. int msql_pconnect ( [string server [, string username [, string password]]])| Open persistent mSQL connection
  1477. int msql_query ( string query, int link_identifier)| Send mSQL query
  1478. int msql_result ( int query_identifier, int i, mixed field)| Get result data
  1479. int msql_select_db ( string database_name, int link_identifier)| Select mSQL database
  1480. string msql_tablename ( int query_identifier, int field)| Get table name of field
  1481. int mssql_bind ( int stmt, string param_name, mixed var, int type [, int is_output [, int is_null [, int maxlen]]])|  Adiciona um parΓmetro a um stored procedure ou a um remote stored procedure 
  1482. int mssql_close ( [int link_identifier])| Fecha a conexπo com o servidor MS SQL
  1483. int mssql_connect ( [string nomedoservidor [, string username [, string password]]])| Abre uma conexπo com o servidor MS SQL
  1484. int mssql_data_seek ( int result_identifier, int row_number)| Move o ponteiro interno da linha
  1485. int mssql_execute ( int stmt)|  Executa uma stored procedure num banco de dados de um servidor MS SQL 
  1486. array mssql_fetch_array ( int result [, int result_type])| Retorna uma linha como uma matriz associativa, matriz numΘrica ou ambas
  1487. array mssql_fetch_assoc ( int result_id [, int result_type])|  Retorna uma matriz associativa da linha atual do conjunto de resultados especificado por result_id 
  1488. int mssql_fetch_batch ( string result_index)|  Retorna o pr≤ximo lote de registros 
  1489. object mssql_fetch_field ( int result [, int field_offset])| Retorna informaτπo sobre o campo
  1490. object mssql_fetch_object ( int result)| Devolve a linha como um objeto
  1491. array mssql_fetch_row ( int result)| Retorna uma matriz enumerada
  1492. int mssql_field_length ( int result [, int offset])| Retorna o tamanho de um campo
  1493. int mssql_field_seek ( int result, int field_offset)| Estabelece o φndice do campo
  1494. int mssql_free_result ( int result)| Limpa o resultado da mem≤ria
  1495. bool mssql_free_statement ( resource statement)| Free statement memory
  1496. string mssql_guid_string ( string binary [, int short_format])|  Converte um 16 byte binary GUID para uma string
  1497. int mssql_init ( string sp_name [, int conn_id])|  Inicializa um stored procedure ou um remote stored procedure 
  1498. bool mssql_next_result ( int result_id)| Move o ponteiro interno do resultado para o pr≤ximo resultado
  1499. int mssql_num_fields ( int result)| Retorna o n·mero de campos em um resultado
  1500. int mssql_num_rows ( int result)| Retorna o n·mero de linhas em um resultado
  1501. int mssql_pconnect ( [string servername [, string username [, string password]]])| Abre uma conexπo persistente com MS SQL
  1502. int mssql_query ( string query [, int link_identifier])| Envia uma query ao MS SQL
  1503. int mssql_result ( int result, int i, mixed field)| Retorna dados do resultado
  1504. int mssql_rows_affected ( int conn_id)|  Retorna o n·mero de registros afetados pela query 
  1505. int mssql_select_db ( string database_name [, int link_identifier])| Seleciona um banco de dados do MS SQL
  1506. int mt_getrandmax ( void )| Retorna o maior valor alet≤rio possφvel
  1507. int mt_rand ( [int min, int max])| Gerador melhorado de n·meros aleat≤rios
  1508. void mt_srand ( int seed)| Semeia o gerador melhorado de n·meros aleat≤rios
  1509. int muscat_close ( resource muscat_handle)| Shuts down the muscat session and releases any memory back to PHP.
  1510. string muscat_get ( resource muscat_handle)| Gets a line back from the core muscat API. 
  1511. int muscat_give ( resource muscat_handle, string string)| Sends string to the core muscat API
  1512. resource muscat_setup ( int size [, string muscat_dir])| Creates a new muscat session and returns the handle.
  1513. resource muscat_setup_net ( string muscat_host, int port)| Creates a new muscat session and returns the handle.
  1514. int mysql_affected_rows ( [resource link_identifier])| Devolve o n·mero de linhas afetadas na operaτπo anterior com o MySQL
  1515. int mysql_change_user ( string user, string password [, string database [, resource link_identifier]])|  Muda o usußrio logado da conexπo ativa 
  1516. int mysql_client_encoding ( [resource link_identifier])| Retorna o nome do conjunto de caracteres
  1517. bool mysql_close ( [resource link_identifier])| Fecha a conexπo com o MySQL
  1518. resource mysql_connect ( [string server [, string username [, string password [, bool new_link [, int client_flags]]]]])| Abre uma conexπo com o servidor MySQL
  1519. bool mysql_create_db ( string database_name [, resource link_identifier])| Cria um banco de dados do MySQL
  1520. bool mysql_data_seek ( resource result_identifier, int row_number)| Move o ponteiro interno do resultado
  1521. string mysql_db_name ( resource result, int row [, mixed field])| Retorna os nomes dos bancos de dados
  1522. resource mysql_db_query ( string database, string query [, resource link_identifier])| Envia uma query ao MySQL
  1523. bool mysql_drop_db ( string database_name [, resource link_identifier])| Apaga um banco de dados do MySQL
  1524. int mysql_errno ( [resource link_identifier])|  Retorna o valor numΘrico da mensagem de erro da operaτπo anterior do MySQL 
  1525. string mysql_error ( [resource link_identifier])|  Retorna o texto da mensagem de erro da operaτπo anterior do MySQL 
  1526. string mysql_escape_string ( string unescaped_string)|  Escapa uma string para uso com o mysql_query. 
  1527. array mysql_fetch_array ( resource result [, int result_type])|  Busca o resultado de uma linha e o coloca como uma matriz associativa, matriz numΘrica ou ambas. 
  1528. array mysql_fetch_assoc ( resource result)|  Busca o resultado de uma linha e o coloca numa matriz associativa 
  1529. object mysql_fetch_field ( resource result [, int field_offset])|  Retorna informaτπo sobre uma coluna de um resultado como um objeto 
  1530. array mysql_fetch_lengths ( resource result)|  Retorna o tamanho de cada campo do resultado 
  1531. object mysql_fetch_object ( resource result)| Retorna o resultado de uma linha como um objeto
  1532. array mysql_fetch_row ( resource result)| Retorna o resultado de uma linha numa matriz numΘrica
  1533. string mysql_field_flags ( resource result, int field_offset)|  Pega as flags do campo especificado no resultado 
  1534. int mysql_field_len ( resource result, int field_offset)|  Retorna o tamanho do campo 
  1535. string mysql_field_name ( resource result, int field_index)|  Retorna o nome do campo especificado no resultado de uma query 
  1536. int mysql_field_seek ( resource result, int field_offset)|  Move o ponteiro do resultado para um campo especificado 
  1537. string mysql_field_table ( resource result, int field_offset)|  Retorna o nome da tabela onde esta o campo especificado 
  1538. string mysql_field_type ( resource result, int field_offset)|  Retorna o tipo do campo especificado em um resultado de query 
  1539. bool mysql_free_result ( resource result)| Libera a mem≤ria do resultado de uma query
  1540. string mysql_get_client_info ( void )| Retorna informaτπo da versπo do cliente MySQL
  1541. string mysql_get_host_info ( [resource link_identifier])| Retorna informaτπo sobre o host do MySQL
  1542. int mysql_get_proto_info ( [resource link_identifier])| Retorna informaτπo do protocolo do MySQL
  1543. string mysql_get_server_info ( [resource link_identifier])| Retorna informaτπo do servidor MySQL
  1544. string mysql_info ( [resource link_identifier])|  Retorna informaτπo sobre a ·ltima query 
  1545. int mysql_insert_id ( [resource link_identifier])|  Retorna o ID gerado da operaτπo INSERT anterior 
  1546. resource mysql_list_dbs ( [resource link_identifier])|  Lista os bancos de dados disponiveis o servidor do MySQL 
  1547. resource mysql_list_fields ( string database_name, string table_name [, resource link_identifier])| Lista os campos de uma tabela
  1548. resource mysql_list_processes ( [resource link_identifier])| Lista os processos MySQL
  1549. resource mysql_list_tables ( string database [, resource link_identifier])| Lista as tabelas em um banco de dados MySQL
  1550. int mysql_num_fields ( resource result)| Retorna o n·mero de campos no resulatdo
  1551. int mysql_num_rows ( resource result)| Retorna o n·mero de linhas em um resultado
  1552. resource mysql_pconnect ( [string server [, string username [, string password [, int client_flags]]]])|  Abre uma conexπo persistente com um servidor MySQL 
  1553. bool mysql_ping ( [resource link_identifier])| Pinga uma conexπo ou reconecta se nπo houver conexπo
  1554. resource mysql_query ( string query [, resource link_identifier])| Realiza uma query MySQL
  1555. string mysql_real_escape_string ( string unescaped_string [, resource link_identifier])|  Escapa os caracteres especiais numa string para usar em um comando SQL, levando em conta o conjunto atual de caracteres. 
  1556. mixed mysql_result ( resource result, int row [, mixed field])| Retorna dados do resultado
  1557. bool mysql_select_db ( string database_name [, resource link_identifier])| Seleciona um banco de dados MySQL
  1558. string mysql_stat ( [resource link_identifier])| Retorna o status atual do sistema
  1559. string mysql_tablename ( resource result, int i)| Retorna o nome da tabela do campo
  1560. int mysql_thread_id ( [resource link_identifier])| Returna o ID da thread atual
  1561. resource mysql_unbuffered_query ( string query [, resource link_identifier])|  Envia uma query para o MySQL, sem retornar e colocar em buffer as linhas do resultado 
  1562. mixed mysqli_affected_rows ( resource link)| Gets the number of affected rows in a previous MySQL operation
  1563. bool mysqli_autocommit ( resource link, bool mode)| Turns on or off auto-commiting database modifications
  1564. bool mysqli_bind_param ( resource stmt, mixed variable, int type)| Binds variables to a prepared statement as parameters
  1565. bool mysqli_bind_result ( resource stmt, mixed var, int len)| Binds variables to a prepared statement for result storage
  1566. bool mysqli_change_user ( resource link, string user, string password, string database)| Changes the user of the specified database connection
  1567. string mysqli_character_set_name ( resource link)| Returns the default character set for the database connection
  1568. bool mysqli_close ( resource link)| Closes a previously opened database connection
  1569. bool mysqli_commit ( resource link)| Commits the current transaction
  1570. resource mysqli_connect ( [string hostname [, string username [, string passwd [, string dbname [, int port [, string socket]]]]]])| Open a new connection to the MySQL server
  1571. void mysqli_data_seek ( resource result, int offset)| Adjusts the result pointer to an arbitary row in the result
  1572. void mysqli_debug ( string debug)| Performs debugging operations
  1573. void mysqli_disable_reads_from_master ( resource link)| 
  1574. void mysqli_disable_rpl_parse ( resource link)| 
  1575. bool mysqli_dump_debug_info ( resource link)| Dump debugging information into the log
  1576. void mysqli_enable_reads_from_master ( resource link)| 
  1577. void mysqli_enable_rpl_parse ( resource link)| 
  1578. int mysqli_errno ( resource link)| Returns the error code for the most recent function call
  1579. string mysqli_error ( resource link)| Returns a string description of the last error
  1580. int mysqli_execute ( resource stmt)| Executes a prepared Query
  1581. int mysqli_fetch ( resource stmt)|  Fetch results from a prepared statement into the bound variables 
  1582. array mysqli_fetch_array ( resource result [, int resulttype])| Fetch a result row as an associative, a numeric array, or both.
  1583. array mysqli_fetch_assoc ( resource result)| Fetch a result row as an associative array
  1584. object mysqli_fetch_field ( resource result)| Returns the next field in the result set
  1585. int mysqli_fetch_field_direct ( resource result, int offset)|  Fetch meta-data for a single field 
  1586. array mysqli_fetch_fields ( resource result)| Returns an array of objects representing the fields in a result set
  1587. array mysqli_fetch_lengths ( resource result)| Returns the lengths of the columns of the current row in the result set
  1588. object mysqli_fetch_object ( resource result)| Returns the current row of a result set as an object
  1589. array mysqli_fetch_row ( resource result)| Get a result row as an enumerated array
  1590. int mysqli_field_count ( resource link)| Returns the number of columns for the most recent query
  1591. int mysqli_field_seek ( resource link, int fieldnr)|  Set result pointer to a specified field offset 
  1592. int mysqli_field_tell ( resource result)|  Get current field offset of a result pointer 
  1593. int mysqli_free_result ( resource result)| Frees the memory associated with a result
  1594. string mysqli_get_client_info ( void )| Returns the MySQL client version as a string
  1595. string mysqli_get_host_info ( resource link)| Returns a string representing the type of connection used
  1596. int mysqli_get_proto_info ( resource link)| Returns the version of the MySQL protocol used
  1597. string mysqli_get_server_info ( resource link)| Returns the version of the MySQL server
  1598. int mysqli_get_server_version ( resource link)| Returns the version of the MySQL server as an integer
  1599. string mysqli_info ( resource link)| Retrieves information about the most recently executed query
  1600. resource mysqli_init ( void )|  Initializes MySQLi and returns a resource for use with mysqli_real_connect 
  1601. mixed mysqli_insert_id ( resource link)| Returns the auto generated id used in the last query
  1602. bool mysqli_kill ( resource link, int processid)| Asks the server to kill a MySQL thread
  1603. bool mysqli_master_query ( resource link, string query)|  Enforce execution of a query on the master in a master/slave setup 
  1604. int mysqli_num_fields ( resource result)|  Get the number of fields in a result 
  1605. int mysqli_num_rows ( resource result)|  Gets the number of rows in a result 
  1606. bool mysqli_options ( resource link, int flags, mixed values)| set options
  1607. int mysqli_param_count ( resource stmt)| Returns the number of parameter for the given statement
  1608. int mysqli_ping ( resource link)|  Ping a server connection, or reconnect if there is no connection 
  1609. resource mysqli_prepare ( resource link, string query)|  Prepare a SQL statement for execution 
  1610. resource mysqli_prepare_result ( resource stmt)| 
  1611. bool mysqli_profiler ( int flags, string info, int port)| 
  1612. resource mysqli_query ( resource link, string query [, int resultmode])| Performs a query on the database
  1613. bool mysqli_read_query_result ( resource link)| 
  1614. bool mysqli_real_connect ( resource link [, string hostname [, string username [, string passwd [, string dbname [, int port [, string socket]]]]]])| Opens a connection to a mysql server
  1615. string mysqli_real_escape_string ( resource link, string escapestr)|  Escapes special characters in a string for use in a SQL statement, taking into account the current charset of the connection 
  1616. bool mysqli_real_query ( resource link, string query)| Execute an SQL query
  1617. bool mysqli_reload ( resource link)| 
  1618. bool mysqli_rollback ( resource link)| 
  1619. int mysqli_rpl_parse_enabled ( resource link)| 
  1620. bool mysqli_rpl_probe ( resource link)| 
  1621. int mysqli_rpl_query_type ( string query)| 
  1622. bool mysqli_select_db ( resource link, string dbname)| Selects the default database for database queries
  1623. bool mysqli_send_long_data ( resource stmt, int param_nr, string data)| 
  1624. bool mysqli_send_query ( resource link, string query)| 
  1625. bool mysqli_slave_query ( resource link, string query)|  Enforces execution of a query on a slave in a master/slave setup 
  1626. string mysqli_ssl_set ( resource link [, string key [, string cert [, string ca [, string capath [, string cipher]]]]])| 
  1627. string mysqli_stat ( resource link)|  Gets the current system status 
  1628. mixed mysqli_stmt_affected_rows ( object stmt)| 
  1629. bool mysqli_stmt_close ( resource stmt)| close statement
  1630. int mysqli_stmt_errno ( resource stmt)| 
  1631. string mysqli_stmt_error ( resource stmt)| 
  1632. resource mysqli_stmt_store_result ( resource stmt)| 
  1633. resource mysqli_store_result ( resource link)| Transfers a result set from the last query
  1634. int mysqli_thread_id ( resource link)| Returns the thread ID for the current connection
  1635. bool mysqli_thread_safe ( void )|  Returns whether thread safety is given or not 
  1636. resource mysqli_use_result ( resource link)| Initiate a result set retrieval
  1637. resource mysqli_warning_count ( resource link)|  Returns the number of warnings from the last query for the given link 
  1638. void natcasesort ( array array)|  Ordena um array utilizando o algoritmo da "ordem natural" sem diferenciar mai·sculas e min·sculas 
  1639. void natsort ( array array)|  Ordena um array utilizando o algoritmo da "ordem natural" 
  1640. int ncurses_addch ( int ch)| Add character at current position and advance cursor 
  1641. int ncurses_addchnstr ( string s, int n)| Add attributed string with specified length at current position 
  1642. int ncurses_addchstr ( string s)| Add attributed string at current position 
  1643. int ncurses_addnstr ( string s, int n)| Add string with specified length at current position 
  1644. int ncurses_addstr ( string text)| Output text at current position 
  1645. int ncurses_assume_default_colors ( int fg, int bg)| Define default colors for color 0 
  1646. int ncurses_attroff ( int attributes)| Turn off the given attributes 
  1647. int ncurses_attron ( int attributes)| Turn on the given attributes 
  1648. int ncurses_attrset ( int attributes)| Set given attributes 
  1649. int ncurses_baudrate ( void )| Returns baudrate of terminal 
  1650. int ncurses_beep ( void )| Let the terminal beep 
  1651. int ncurses_bkgd ( int attrchar)| Set background property for terminal screen 
  1652. void ncurses_bkgdset ( int attrchar)| Control screen background 
  1653. int ncurses_border ( int left, int right, int top, int bottom, int tl_corner, int tr_corner, int bl_corner, int br_corner)| Draw a border around the screen using attributed characters 
  1654. int ncurses_bottom_panel ( resource panel)|  Moves a visible panel to the bottom of the stack 
  1655. bool ncurses_can_change_color ( void )| Check if we can change terminals colors 
  1656. bool ncurses_cbreak ( void )| Switch of input buffering 
  1657. bool ncurses_clear ( void )| Clear screen 
  1658. bool ncurses_clrtobot ( void )| Clear screen from current position to bottom 
  1659. bool ncurses_clrtoeol ( void )| Clear screen from current position to end of line 
  1660. int ncurses_color_content ( int color, int &r, int &g, int &b)|  Gets the RGB value for color 
  1661. int ncurses_color_set ( int pair)| Set fore- and background color 
  1662. int ncurses_curs_set ( int visibility)| Set cursor state 
  1663. bool ncurses_def_prog_mode ( void )| Saves terminals (program) mode
  1664. bool ncurses_def_shell_mode ( void )| Saves terminals (shell) mode
  1665. int ncurses_define_key ( string definition, int keycode)| Define a keycode 
  1666. int ncurses_del_panel ( resource panel)|  Remove panel from the stack and delete it (but not the associated window) 
  1667. int ncurses_delay_output ( int milliseconds)| Delay output on terminal using padding characters 
  1668. bool ncurses_delch ( void )| Delete character at current position, move rest of line left 
  1669. bool ncurses_deleteln ( void )| Delete line at current position, move rest of screen up 
  1670. int ncurses_delwin ( resource window)| Delete a ncurses window 
  1671. bool ncurses_doupdate ( void )| Write all prepared refreshes to terminal 
  1672. bool ncurses_echo ( void )| Activate keyboard input echo 
  1673. int ncurses_echochar ( int character)| Single character output including refresh 
  1674. int ncurses_end ( void )| Stop using ncurses, clean up the screen 
  1675. bool ncurses_erase ( void )| Erase terminal screen 
  1676. string ncurses_erasechar ( void )| Returns current erase character 
  1677. int ncurses_filter ( void )| 
  1678. bool ncurses_flash ( void )| Flash terminal screen (visual bell) 
  1679. bool ncurses_flushinp ( void )| Flush keyboard input buffer 
  1680. int ncurses_getch ( void )| Read a character from keyboard 
  1681. void ncurses_getmaxyx ( resource window, int &y, int &x)|  Returns the size of a window 
  1682. bool ncurses_getmouse ( array mevent)| Reads mouse event
  1683. void ncurses_getyx ( resource window, int &y, int &x)|  Returns the current cursor position for a window 
  1684. int ncurses_halfdelay ( int tenth)| Put terminal into halfdelay mode 
  1685. bool ncurses_has_colors ( void )| Check if terminal has colors 
  1686. bool ncurses_has_ic ( void )| Check for insert- and delete-capabilities 
  1687. bool ncurses_has_il ( void )| Check for line insert- and delete-capabilities 
  1688. int ncurses_has_key ( int keycode)| Check for presence of a function key on terminal keyboard 
  1689. int ncurses_hide_panel ( resource panel)|  Remove panel from the stack, making it invisible 
  1690. int ncurses_hline ( int charattr, int n)| Draw a horizontal line at current position using an attributed character and max. n characters long 
  1691. string ncurses_inch ( void )| Get character and attribute at current position
  1692. int ncurses_init ( void )| Initialize ncurses 
  1693. int ncurses_init_color ( int color, int r, int g, int b)| Set new RGB value for color 
  1694. int ncurses_init_pair ( int pair, int fg, int bg)| Allocate a color pair 
  1695. int ncurses_insch ( int character)| Insert character moving rest of line including character at current position 
  1696. int ncurses_insdelln ( int count)| Insert lines before current line scrolling down (negative numbers delete and scroll up) 
  1697. bool ncurses_insertln ( void )| Insert a line, move rest of screen down 
  1698. int ncurses_insstr ( string text)| Insert string at current position, moving rest of line right 
  1699. int ncurses_instr ( string buffer)| Reads string from terminal screen 
  1700. bool ncurses_isendwin ( void )| Ncurses is in endwin mode, normal screen output may be performed 
  1701. int ncurses_keyok ( int keycode, bool enable)| Enable or disable a keycode 
  1702. int ncurses_keypad ( resource window, bool bf)|  Turns keypad on or off 
  1703. bool ncurses_killchar ( void )| Returns current line kill character 
  1704. string ncurses_longname ( void )| Returns terminals description
  1705. long ncurses_meta ( resource window, bool 8bit)|  Enables/Disable 8-bit meta key information 
  1706. bool ncurses_mouse_trafo ( int &y, int &x, bool toscreen)|  Transforms coordinates 
  1707. int ncurses_mouseinterval ( int milliseconds)| Set timeout for mouse button clicks 
  1708. int ncurses_mousemask ( int newmask, int oldmask)| Sets mouse options
  1709. int ncurses_move ( int y, int x)| Move output position 
  1710. int ncurses_move_panel ( resource panel, int startx, int starty)|  Moves a panel so that it's upper-left corner is at [startx, starty] 
  1711. int ncurses_mvaddch ( int y, int x, int c)| Move current position and add character 
  1712. int ncurses_mvaddchnstr ( int y, int x, string s, int n)| Move position and add attrributed string with specified length 
  1713. int ncurses_mvaddchstr ( int y, int x, string s)| Move position and add attributed string 
  1714. int ncurses_mvaddnstr ( int y, int x, string s, int n)| Move position and add string with specified length 
  1715. int ncurses_mvaddstr ( int y, int x, string s)| Move position and add string 
  1716. int ncurses_mvcur ( int old_y, int old_x, int new_y, int new_x)| Move cursor immediately 
  1717. int ncurses_mvdelch ( int y, int x)| Move position and delete character, shift rest of line left 
  1718. int ncurses_mvgetch ( int y, int x)| Move position and get character at new position 
  1719. int ncurses_mvhline ( int y, int x, int attrchar, int n)| Set new position and draw a horizontal line using an attributed character and max. n characters long 
  1720. int ncurses_mvinch ( int y, int x)| Move position and get attributed character at new position 
  1721. int ncurses_mvvline ( int y, int x, int attrchar, int n)| Set new position and draw a vertical line using an attributed character and max. n characters long 
  1722. int ncurses_mvwaddstr ( resource window, int y, int x, string text)| Add string at new position in window 
  1723. int ncurses_napms ( int milliseconds)| Sleep 
  1724. resource ncurses_new_panel ( resource window)|  Create a new panel and associate it with window 
  1725. resource ncurses_newpad ( int rows, int cols)|  Creates a new pad (window) 
  1726. int ncurses_newwin ( int rows, int cols, int y, int x)| Create a new window 
  1727. bool ncurses_nl ( void )| Translate newline and carriage return / line feed 
  1728. bool ncurses_nocbreak ( void )| Switch terminal to cooked mode 
  1729. bool ncurses_noecho ( void )| Switch off keyboard input echo 
  1730. bool ncurses_nonl ( void )| Do not translate newline and carriage return / line feed 
  1731. int ncurses_noqiflush ( void )| Do not flush on signal characters
  1732. bool ncurses_noraw ( void )| Switch terminal out of raw mode 
  1733. int ncurses_pair_content ( int pair, int &f, int &b)|  Gets the RGB value for color 
  1734. int ncurses_panel_above ( resource panel)|  Returns the panel above panel. If panel is null, returns the bottom panel in the stack 
  1735. int ncurses_panel_below ( resource panel)|  Returns the panel below panel. If panel is null, returns the top panel in the stack 
  1736. int ncurses_panel_window ( resource panel)|  Returns the window associated with panel 
  1737. int ncurses_pnoutrefresh ( resource pad, int pminrow, int pmincol, int sminrow, int smincol, int smaxrow, int smaxcol)|  Copys a region from a pad into the virtual screen 
  1738. int ncurses_prefresh ( resource pad, int pminrow, int pmincol, int sminrow, int smincol, int smaxrow, int smaxcol)|  Copys a region from a pad into the virtual screen 
  1739. int ncurses_putp ( string text)| 
  1740. int ncurses_qiflush ( void )| Flush on signal characters 
  1741. bool ncurses_raw ( void )| Switch terminal into raw mode 
  1742. int ncurses_refresh ( int ch)| Refresh screen 
  1743. int ncurses_replace_panel ( resource panel, resource window)|  Replaces the window associated with panel 
  1744. int ncurses_reset_prog_mode ( void )|  Resets the prog mode saved by def_prog_mode 
  1745. int ncurses_reset_shell_mode ( void )|  Resets the shell mode saved by def_shell_mode 
  1746. bool ncurses_resetty ( void )| Restores saved terminal state 
  1747. bool ncurses_savetty ( void )| Saves terminal state 
  1748. int ncurses_scr_dump ( string filename)| Dump screen content to file 
  1749. int ncurses_scr_init ( string filename)| Initialize screen from file dump 
  1750. int ncurses_scr_restore ( string filename)| Restore screen from file dump 
  1751. int ncurses_scr_set ( string filename)| Inherit screen from file dump 
  1752. int ncurses_scrl ( int count)| Scroll window content up or down without changing current position 
  1753. int ncurses_show_panel ( resource panel)|  Places an invisible panel on top of the stack, making it visible 
  1754. bool ncurses_slk_attr ( void )| Returns current soft label key attribute
  1755. int ncurses_slk_attroff ( int intarg)| 
  1756. int ncurses_slk_attron ( int intarg)| 
  1757. int ncurses_slk_attrset ( int intarg)| 
  1758. bool ncurses_slk_clear ( void )| Clears soft labels from screen
  1759. int ncurses_slk_color ( int intarg)| Sets color for soft label keys
  1760. bool ncurses_slk_init ( int format)| Initializes soft label key functions
  1761. bool ncurses_slk_noutrefresh ( void )| Copies soft label keys to virtual screen
  1762. bool ncurses_slk_refresh ( void )| Copies soft label keys to screen
  1763. bool ncurses_slk_restore ( void )| Restores soft label keys
  1764. bool ncurses_slk_set ( int labelnr, string label, int format)|  Sets function key labels 
  1765. bool ncurses_slk_touch ( void )| Fources output when ncurses_slk_noutrefresh is performed
  1766. int ncurses_standend ( void )| Stop using 'standout' attribute 
  1767. int ncurses_standout ( void )| Start using 'standout' attribute 
  1768. int ncurses_start_color ( void )| Start using colors 
  1769. bool ncurses_termattrs ( void )| Returns a logical OR of all attribute flags supported by terminal 
  1770. string ncurses_termname ( void )| Returns terminals (short)-name
  1771. void ncurses_timeout ( int millisec)| Set timeout for special key sequences 
  1772. int ncurses_top_panel ( resource panel)|  Moves a visible panel to the top of the stack 
  1773. int ncurses_typeahead ( int fd)| Specify different filedescriptor for typeahead checking 
  1774. int ncurses_ungetch ( int keycode)| Put a character back into the input stream 
  1775. bool ncurses_ungetmouse ( array mevent)| Pushes mouse event to queue
  1776. void ncurses_update_panels ( void )|  Refreshes the virtual screen to reflect the relations between panels in the stack. 
  1777. bool ncurses_use_default_colors ( void )| Assign terminal default colors to color id -1 
  1778. void ncurses_use_env ( bool flag)| Control use of environment information about terminal size 
  1779. int ncurses_use_extended_names ( bool flag)| Control use of extended names in terminfo descriptions 
  1780. int ncurses_vidattr ( int intarg)| 
  1781. int ncurses_vline ( int charattr, int n)| Draw a vertical line at current position using an attributed character and max. n characters long 
  1782. int ncurses_waddch ( resource window, int ch)|  Adds character at current position in a window and advance cursor 
  1783. int ncurses_waddstr ( resource window, string str [, int n])|  Outputs text at current postion in window 
  1784. int ncurses_wattroff ( resource window, int attrs)|  Turns off attributes for a window 
  1785. int ncurses_wattron ( resource window, int attrs)|  Turns on attributes for a window 
  1786. int ncurses_wattrset ( resource window, int attrs)|  Set the attributes for a window 
  1787. int ncurses_wborder ( resource window, int left, int right, int top, int bottom, int tl_corner, int tr_corner, int bl_corner, int br_corner)|  Draws a border around the window using attributed characters 
  1788. int ncurses_wclear ( resource window)|  Clears window 
  1789. int ncurses_wcolor_set ( resource window, int color_pair)|  Sets windows color pairings 
  1790. long ncurses_werase ( resource window)|  Erase window contents 
  1791. int ncurses_wgetch ( resource window)|  Reads a character from keyboard (window) 
  1792. int ncurses_whline ( resource window, int charattr, int n)|  Draws a horizontal line in a window at current position using an attributed character and max. n characters long 
  1793. bool ncurses_wmouse_trafo ( resource window, int &y, int &x, bool toscreen)|  Transforms window/stdscr coordinates 
  1794. int ncurses_wmove ( resource window, int y, int x)|  Moves windows output position 
  1795. int ncurses_wnoutrefresh ( resource window)|  Copies window to virtual screen 
  1796. int ncurses_wrefresh ( resource window)| Refresh window on terminal screen 
  1797. int ncurses_wstandend ( resource window)|  End standout mode for a window 
  1798. int ncurses_wstandout ( resource window)|  Enter standout mode for a window 
  1799. int ncurses_wvline ( resource window, int charattr, int n)|  Draws a vertical line in a window at current position using an attributed character and max. n characters long 
  1800. mixed next ( array array)|  Avanτa o ponteiro interno de um array 
  1801. string ngettext ( string msgid1, string msgid2, int n)| O mesmo que gettext, mas vocΩ pode especificar mais de uma mensagem
  1802. string nl2br ( string string)|  Insere quebras de linha HTML antes de todas newlines em uma string 
  1803. string nl_langinfo ( int item)|  Retorna informaτπo de linguagem e local 
  1804. array notes_body ( string server, string mailbox, int msg_number)| Open the message msg_number in the specified mailbox on the specified server (leave serv
  1805. string notes_copy_db ( string from_database_name, string to_database_name)| Create a note using form form_name 
  1806. bool notes_create_db ( string database_name)| Create a Lotus Notes database 
  1807. string notes_create_note ( string database_name, string form_name)| Create a note using form form_name 
  1808. bool notes_drop_db ( string database_name)| Drop a Lotus Notes database 
  1809. bool notes_find_note ( string database_name, string name [, string type])| Returns a note id found in database_name. Specify the name of the note. Leaving type bla
  1810. object notes_header_info ( string server, string mailbox, int msg_number)| Open the message msg_number in the specified mailbox on the specified server (leave serv
  1811. bool notes_list_msgs ( string db)| Returns the notes from a selected database_name
  1812. string notes_mark_read ( string database_name, string user_name, string note_id)| Mark a note_id as read for the User user_name
  1813. string notes_mark_unread ( string database_name, string user_name, string note_id)| Mark a note_id as unread for the User user_name
  1814. bool notes_nav_create ( string database_name, string name)| Create a navigator name, in database_name 
  1815. string notes_search ( string database_name, string keywords)| Find notes that match keywords in database_name
  1816. string notes_unread ( string database_name, string user_name)| Returns the unread note id's for the current User user_name
  1817. string notes_version ( string database_name)| Get the version Lotus Notes 
  1818. array nsapi_request_headers ( void )| Fetch all HTTP request headers
  1819. array nsapi_response_headers ( void )|  Fetch all HTTP response headers 
  1820. int nsapi_virtual ( string uri)| Perform an NSAPI sub-request
  1821. string number_format ( float number [, int decimals])| Formata um n·mero com os milhares agrupados
  1822. void ob_clean ( void )|  Clean (erase) the output buffer 
  1823. bool ob_end_clean ( void )|  Clean (erase) the output buffer and turn off output buffering 
  1824. bool ob_end_flush ( void )|  Flush (send) the output buffer and turn off output buffering 
  1825. void ob_flush ( void )|  Flush (send) the output buffer 
  1826. string ob_get_clean ( void )|  Get current buffer contents and delete current output buffer 
  1827. string ob_get_contents ( void )|  Return the contents of the output buffer 
  1828. int ob_get_length ( void )|  Return the length of the output buffer 
  1829. int ob_get_level ( void )|  Return the nesting level of the output buffering mechanism 
  1830. array ob_get_status ( [bool full_status])|  Get status of output buffers 
  1831. string ob_gzhandler ( string buffer [, int mode])|  ob_start callback function to gzip output buffer 
  1832. array ob_iconv_handler ( string contents, int status)| Convert character encoding as output buffer handler
  1833. void ob_implicit_flush ( [int flag])|  Turn implicit flush on/off 
  1834. bool ob_start ( [callback output_callback])| Turn on output buffering
  1835. bool ocibindbyname ( int stmt, string ph_name, mixed & variable, int length [, int type])|  Bind a PHP variable to an Oracle Placeholder 
  1836. bool ocicancel ( int stmt)| Cancel reading from cursor
  1837. bool ocicollappend ( object collection, object object)| Append an object to the collection
  1838. bool ocicollassign ( object collection, object object)| Assign a collection from another existing collection
  1839. bool ocicollassignelem ( object collection, string ndx, string val)| Assign element val to collection at index ndx
  1840. string ocicollgetelem ( object collection, string ndx)| Retrieve the value at collection index ndx
  1841. int ocicollmax ( object collection)|  Return the max value of a collection. For a varray this is the maximum length of the array 
  1842. int ocicollsize ( object collection)| Return the size of a collection
  1843. bool ocicolltrim ( object collection, int num)| Trim num elements from the end of a collection
  1844. bool ocicolumnisnull ( resource stmt, mixed column)| Test whether a result column is NULL
  1845. string ocicolumnname ( int stmt, int col)| Returns the name of a column
  1846. int ocicolumnprecision ( int stmt, int col)| Tell the precision of a column
  1847. int ocicolumnscale ( int stmt, int col)| Tell the scale of a column
  1848. int ocicolumnsize ( int stmt, mixed column)| Return result column size
  1849. mixed ocicolumntype ( int stmt, int col)| Returns the data type of a column
  1850. mixed ocicolumntyperaw ( int stmt, int col)| Tell the raw oracle data type of a column
  1851. bool ocicommit ( int connection)| Commits outstanding transactions
  1852. bool ocidefinebyname ( int stmt, string Column-Name, mixed variable [, int type])|  Use a PHP variable for the define-step during a SELECT 
  1853. array ocierror ( [int stmt|conn|global])| Return the last error of stmt|conn|global
  1854. int ociexecute ( int statement [, int mode])| Execute a statement
  1855. bool ocifetch ( int statement)| Fetches the next row into result-buffer
  1856. int ocifetchinto ( int stmt, array &result [, int mode])| Fetches the next row into result-array
  1857. int ocifetchstatement ( resource stmt, array & variable, int skip, int maxrows, int flags)| Fetch all rows of result data into an array
  1858. bool ocifreecollection ( object lob)| Deletes collection object
  1859. int ocifreecursor ( int stmt)|  Free all resources associated with a cursor 
  1860. bool ocifreedesc ( object lob)| Deletes a large object descriptor
  1861. bool ocifreestatement ( resource stmt)|  Free all resources associated with a statement 
  1862. void ociinternaldebug ( int onoff)|  Enables or disables internal debug output 
  1863. string ociloadlob ( object lob)| Loads a large object
  1864. bool ocilogoff ( resource connection)| Disconnects from Oracle server
  1865. int ocilogon ( string username, string password [, string db])| Establishes a connection to Oracle
  1866. bool ocinewcollection ( int conn, string tdo [, string shema])| Initialize a new collection
  1867. resource ocinewcursor ( resource conn)|  Return a new cursor (Statement-Handle) 
  1868. string ocinewdescriptor ( int connection [, int type])|  Initialize a new empty LOB or FILE descriptor 
  1869. int ocinlogon ( string username, string password [, string db])| Establishes a new connection to Oracle
  1870. int ocinumcols ( resource stmt)|  Return the number of result columns in a statement 
  1871. int ociparse ( int conn, string query)| Parse a query and return an Oracle statement
  1872. int ociplogon ( string username, string password [, string db])|  Connect to an Oracle database using a persistent connection 
  1873. mixed ociresult ( int statement, mixed column)| Returns column value for fetched row
  1874. bool ocirollback ( resource connection)| Rolls back outstanding transactions
  1875. int ocirowcount ( resource statement)| Gets the number of affected rows
  1876. bool ocisavelob ( object lob)| Saves a large object 
  1877. bool ocisavelobfile ( object lob)| Saves a large object file
  1878. string ociserverversion ( resource conn)| Return a string containing server version information
  1879. int ocisetprefetch ( resource stmt, int rows)| Sets number of rows to be prefetched
  1880. string ocistatementtype ( resource stmt)| Return the type of an OCI statement
  1881. bool ociwritelobtofile ( object lob [, string filename [, int start [, int lenght]]])| Saves a large object file
  1882. int octdec ( string octal_string)| Octal para decimal
  1883. bool odbc_autocommit ( resource connection_id [, bool OnOff])| Toggle autocommit behaviour
  1884. int odbc_binmode ( resource result_id, int mode)| Handling of binary column data
  1885. void odbc_close ( resource connection_id)| Close an ODBC connection
  1886. void odbc_close_all ( void )| Close all ODBC connections
  1887. int odbc_columnprivileges ( resource connection_id [, string qualifier [, string owner [, string table_name [, string column_name]]]])|  Returns a result identifier that can be used to fetch a list of columns and associated privileges 
  1888. resource odbc_columns ( resource connection_id [, string qualifier [, string schema [, string table_name [, string column_name]]]])|  Lists the column names in specified tables. Returns a result identifier containing the information. 
  1889. bool odbc_commit ( resource connection_id)| Commit an ODBC transaction
  1890. resource odbc_connect ( string dsn, string user, string password [, int cursor_type])| Connect to a datasource
  1891. string odbc_cursor ( resource result_id)| Get cursorname
  1892. resource odbc_data_source ( resource connection_id, constant fetch_type)| Returns information about a current connection
  1893. resource odbc_do ( resource conn_id, string query)| Synonym for odbc_exec()
  1894. string odbc_error ( [resource connection_id])| Get the last error code
  1895. string odbc_errormsg ( [resource connection_id])| Get the last error message
  1896. resource odbc_exec ( resource connection_id, string query_string)| Prepare and execute a SQL statement
  1897. bool odbc_execute ( resource result_id [, array parameters_array])| Execute a prepared statement
  1898. array odbc_fetch_array ( resource result [, int rownumber])|  Fetch a result row as an associative array 
  1899. bool odbc_fetch_into ( resource result_id [, int rownumber, array result_array])| Fetch one result row into array
  1900. object odbc_fetch_object ( resource result [, int rownumber])|  Fetch a result row as an object 
  1901. bool odbc_fetch_row ( resource result_id [, int row_number])| Fetch a row
  1902. int odbc_field_len ( resource result_id, int field_number)| Get the length (precision) of a field
  1903. string odbc_field_name ( resource result_id, int field_number)| Get the columnname
  1904. int odbc_field_num ( resource result_id, string field_name)| Return column number
  1905. string odbc_field_precision ( resource result_id, int field_number)| Synonym for odbc_field_len()
  1906. string odbc_field_scale ( resource result_id, int field_number)| Get the scale of a field
  1907. string odbc_field_type ( resource result_id, int field_number)| Datatype of a field
  1908. resource odbc_foreignkeys ( resource connection_id, string pk_qualifier, string pk_owner, string pk_table, string fk_qualifier, string fk_owner, string fk_table)|  Returns a list of foreign keys in the specified table or a list of foreign keys in other tables that refer to the primary key in the specified table 
  1909. bool odbc_free_result ( resource result_id)| Free resources associated with a result
  1910. int odbc_gettypeinfo ( resource connection_id [, int data_type])|  Returns a result identifier containing information about data types supported by the data source. 
  1911. int odbc_longreadlen ( resource result_id, int length)| Handling of LONG columns
  1912. bool odbc_next_result ( resource result_id)|  Checks if multiple results are available 
  1913. int odbc_num_fields ( resource result_id)| Number of columns in a result
  1914. int odbc_num_rows ( resource result_id)| Number of rows in a result
  1915. resource odbc_pconnect ( string dsn, string user, string password [, int cursor_type])| Open a persistent database connection
  1916. resource odbc_prepare ( resource connection_id, string query_string)| Prepares a statement for execution
  1917. resource odbc_primarykeys ( resource connection_id, string qualifier, string owner, string table)|  Returns a result identifier that can be used to fetch the column names that comprise the primary key for a table 
  1918. resource odbc_procedurecolumns ( resource connection_id [, string qualifier [, string owner [, string proc [, string column]]]])|  Retrieve information about parameters to procedures 
  1919. resource odbc_procedures ( resource connection_id [, string qualifier [, string owner [, string name]]])|  Get the list of procedures stored in a specific data source. Returns a result identifier containing the information. 
  1920. string odbc_result ( resource result_id, mixed field)| Get result data
  1921. int odbc_result_all ( resource result_id [, string format])| Print result as HTML table
  1922. int odbc_rollback ( resource connection_id)| Rollback a transaction
  1923. int odbc_setoption ( resource id, int function, int option, int param)|  Adjust ODBC settings. Returns FALSE if an error occurs, otherwise TRUE. 
  1924. resource odbc_specialcolumns ( resource connection_id, int type, string qualifier, string owner, string table, int scope, int nullable)|  Returns either the optimal set of columns that uniquely identifies a row in the table or columns that are automatically updated when any value in the row is updated by a transaction 
  1925. resource odbc_statistics ( resource connection_id, string qualifier, string owner, string table_name, int unique, int accuracy)| Retrieve statistics about a table
  1926. int odbc_tableprivileges ( resource connection_id [, string qualifier [, string owner [, string name]]])|  Lists tables and the privileges associated with each table 
  1927. int odbc_tables ( resource connection_id [, string qualifier [, string owner [, string name [, string types]]]])|  Get the list of table names stored in a specific data source. Returns a result identifier containing the information. 
  1928. resource opendir ( string path)| Abre um manipulador de diret≤rio
  1929. int openlog ( string ident, int option, int facility)| Open connection to system logger
  1930. bool openssl_csr_export ( resource csr, string &out [, bool notext])| Exports a CSR as a string
  1931. bool openssl_csr_export_to_file ( resource csr, string outfilename [, bool notext])| Exports a CSR to a file
  1932. bool openssl_csr_new ( array dn, resource privkey [, array configargs [, array extraattribs]])| Generates a CSR
  1933. resource openssl_csr_sign ( mixed csr, mixed cacert, mixed priv_key, int days)| Sign a CSR with another certificate (or itself) and generate a certificate
  1934. mixed openssl_error_string ( void )| Return openSSL error message
  1935. void openssl_free_key ( resource key_identifier)| Free key resource
  1936. resource openssl_get_privatekey ( mixed key [, string passphrase])| Get a private key
  1937. resource openssl_get_publickey ( mixed certificate)| Extract public key from certificate and prepare it for use
  1938. bool openssl_open ( string sealed_data, string open_data, string env_key, mixed priv_key_id)| Open sealed data
  1939. bool openssl_pkcs7_decrypt ( string infilename, string outfilename, mixed recipcert [, mixed recipkey])| Decrypts an S/MIME encrypted message
  1940. bool openssl_pkcs7_encrypt ( string infile, string outfile, mixed recipcerts, array headers [, int flags])| Encrypt an S/MIME message
  1941. bool openssl_pkcs7_sign ( string infilename, string outfilename, mixed signcert, mixed privkey, array headers [, int flags [, string extracerts]])| sign an S/MIME message
  1942. bool openssl_pkcs7_verify ( string filename, int flags [, string outfilename [, array cainfo [, string extracerts]]])| Verifies the signature of an S/MIME signed message
  1943. bool openssl_pkey_export ( mixed key, string &out [, string passphrase [, array configargs]])| Gets an exportable representation of a key into a string
  1944. bool openssl_pkey_export_to_file ( mixed key, string outfilename [, string passphrase [, array configargs]])| Gets an exportable representation of a key into a file 
  1945. resource openssl_get_privatekey ( mixed key [, string passphrase])| Get a private key
  1946. resource openssl_pkey_get_public ( mixed certificate)| Extract public key from certificate and prepare it for use
  1947. resource openssl_pkey_new ( [array configargs])| Generates a new private key 
  1948. bool openssl_private_decrypt ( string data, string &decrypted, mixed key [, int padding])| Decrypts data with private key 
  1949. bool openssl_private_encrypt ( string data, string crypted, mixed key [, int padding])| Encrypts data with private key 
  1950. bool openssl_public_decrypt ( string data, string crypted, resource key [, int padding])| Decrypts data with public key 
  1951. bool openssl_public_encrypt ( string data, string crypted, mixed key [, int padding])| Encrypts data with public key 
  1952. int openssl_seal ( string data, string sealed_data, array env_keys, array pub_key_ids)| Seal (encrypt) data
  1953. bool openssl_sign ( string data, string signature, mixed priv_key_id)| Generate signature
  1954. int openssl_verify ( string data, string signature, mixed pub_key_id)| Verify signature
  1955. bool openssl_x509_check_private_key ( mixed cert, mixed key)| Checks if a private key corresponds to a certificate
  1956. bool openssl_x509_checkpurpose ( mixed x509cert, int purpose, array cainfo [, string untrustedfile])| Verifies if a certificate can be used for a particular purpose
  1957. bool openssl_x509_export ( mixed x509, string &output [, bool notext])| Exports a certificate as a string
  1958. bool openssl_x509_export_to_file ( mixed x509, string outfilename [, bool notext])| Exports a certificate to file
  1959. void openssl_x509_free ( resource x509cert)| Free certificate resource
  1960. array openssl_x509_parse ( mixed x509cert [, bool shortnames])| Parse an X509 certificate and return the information as an array
  1961. resource openssl_x509_read ( mixed x509certdata)| Parse an X.509 certificate and return a resource identifier for it
  1962. bool ora_bind ( resource cursor, string PHP_variable_name, string SQL_parameter_name, int length [, int type])| Binds a PHP variable to an Oracle parameter
  1963. bool ora_close ( ressource cursor)| Closes an Oracle cursor
  1964. string ora_columnname ( resource cursor, int column)| Gets the name of an Oracle result column
  1965. int ora_columnsize ( resource cursor, int column)| Returns the size of an Oracle result column
  1966. string ora_columntype ( resource cursor, int column)| Gets the type of an Oracle result column
  1967. bool ora_commit ( resource conn)| Commit an Oracle transaction
  1968. bool ora_commitoff ( resource conn)| Disable automatic commit
  1969. bool ora_commiton ( resource conn)| Enable automatic commit
  1970. resource ora_do ( resource conn, string query)| Parse, Exec, Fetch
  1971. string ora_error ( resource cursor_or_connection)| Gets an Oracle error message
  1972. int ora_errorcode ( resource cursor_or_connection)| Gets an Oracle error code
  1973. bool ora_exec ( resource cursor)| Execute a parsed statement on an Oracle cursor
  1974. bool ora_fetch ( resource cursor)| Fetch a row of data from a cursor
  1975. int ora_fetch_into ( resource cursor, array result [, int flags])| Fetch a row into the specified result array
  1976. mixed ora_getcolumn ( resource cursor, int column)| Get data from a fetched column
  1977. bool ora_logoff ( resource connection)| Close an Oracle connection
  1978. resource ora_logon ( string user, string password)| Open an Oracle connection
  1979. int ora_numcols ( resource cursor)| Returns the number of columns
  1980. int ora_numrows ( resource cursor)| Returns the number of rows
  1981. resource ora_open ( resource connection)| Opens an Oracle cursor
  1982. bool ora_parse ( resource cursor, string sql_statement, int defer)| Parse an SQL statement with Oracle
  1983. resource ora_plogon ( string user, string password)|  Open a persistent Oracle connection 
  1984. bool ora_rollback ( resource connection)| Rolls back a transaction
  1985. int ord ( string string)| Retorna o valor ASCII do caractere
  1986. void overload ( [string class_name])| Ativa a chamada sobrecarregada de propriedades e mΘtodos para uma classe
  1987. void ovrimos_close ( int connection)| Closes the connection to ovrimos
  1988. int ovrimos_commit ( int connection_id)| Commits the transaction
  1989. int ovrimos_connect ( string host, string db, string user, string password)| Connect to the specified database
  1990. int ovrimos_cursor ( int result_id)| Returns the name of the cursor
  1991. int ovrimos_exec ( int connection_id, string query)| Executes an SQL statement
  1992. bool ovrimos_execute ( int result_id [, array parameters_array])| Executes a prepared SQL statement
  1993. bool ovrimos_fetch_into ( int result_id, array result_array [, string how [, int rownumber]])| Fetches a row from the result set
  1994. bool ovrimos_fetch_row ( int result_id [, int how [, int row_number]])| Fetches a row from the result set
  1995. int ovrimos_field_len ( int result_id, int field_number)| Returns the length of the output column
  1996. int ovrimos_field_name ( int result_id, int field_number)| Returns the output column name
  1997. int ovrimos_field_num ( int result_id, string field_name)|  Returns the (1-based) index of the output column 
  1998. int ovrimos_field_type ( int result_id, int field_number)|  Returns the (numeric) type of the output column 
  1999. bool ovrimos_free_result ( int result_id)| Frees the specified result_id
  2000. int ovrimos_longreadlen ( int result_id, int length)|  Specifies how many bytes are to be retrieved from long datatypes 
  2001. int ovrimos_num_fields ( int result_id)| Returns the number of columns
  2002. int ovrimos_num_rows ( int result_id)|  Returns the number of rows affected by update operations 
  2003. int ovrimos_prepare ( int connection_id, string query)| Prepares an SQL statement
  2004. int ovrimos_result ( int result_id, mixed field)| Retrieves the output column
  2005. bool ovrimos_result_all ( int result_id [, string format])|  Prints the whole result set as an HTML table 
  2006. int ovrimos_rollback ( int connection_id)| Rolls back the transaction
  2007. string pack ( string format [, mixed args])| Pack data into binary string.
  2008. array parse_ini_file ( string nomedoarquivo [, bool processar_secoes])| Interpreta um arquivo de configuraτπo
  2009. void parse_str ( string str [, array arr])| Converte a string em varißveis
  2010. array parse_url ( string url)| Separa uma URL e retorna seus componentes
  2011. void passthru ( string command [, int return_var])|  Execute an external program and display raw output 
  2012. array pathinfo ( string path)| Retorna informaτπo sobre o path de um arquivo
  2013. int pclose ( int fp)| Fecha um processo de um ponteiro de arquivo
  2014. bool pcntl_exec ( string path [, array args [, array envs]])|  Executes specified program in current process space 
  2015. int pcntl_fork ( void )| Forks the currently running process
  2016. bool pcntl_signal ( int signo, callback handle [, bool restart_syscalls])| Installs a signal handler
  2017. int pcntl_waitpid ( int pid, int &status, int options)| Waits on or returns the status of a forked child
  2018. int pcntl_wexitstatus ( int status)|  Returns the return code of a terminated child 
  2019. int pcntl_wifexited ( int status)|  Returns TRUE if status code represents a successful exit 
  2020. int pcntl_wifsignaled ( int status)|  Returns TRUE if status code represents a termination due to a signal 
  2021. int pcntl_wifstopped ( int status)|  Returns TRUE if child process is currently stopped 
  2022. int pcntl_wstopsig ( int status)|  Returns the signal which caused the child to stop 
  2023. int pcntl_wtermsig ( int status)|  Returns the signal which caused the child to terminate 
  2024. int pdf_add_bookmark ( int pdf_object, string text [, int parent [, int open]])| Adds bookmark for current page
  2025. int pdf_add_launchlink ( int pdf_object, float llx, float lly, float urx, float ury, string filename)| Add a launch annotation for current page
  2026. int pdf_add_locallink ( int pdf_object, float llx, float lly, float urx, float ury, int page, string dest)| Add a link annotation for current page
  2027. int pdf_add_note ( int pdf_object, float llx, float lly, float urx, float ury, string contents, string title, string icon, int open)| Add a note annotation for current page
  2028. int pdf_add_pdflink ( int pdf_object, float llx, float lly, float urx, float ury, string filename, int page, string dest)| Adds file link annotation for current page
  2029. int pdf_add_thumbnail ( int pdf_object, int image)| Adds thumbnail for current page
  2030. int pdf_add_weblink ( int pdf_object, float llx, float lly, float urx, float ury, string url)| Adds weblink for current page
  2031. void pdf_arc ( resource pdf_object, float x, float y, float r, float alpha, float beta)| Draws an arc (counterclockwise)
  2032. void pdf_arcn ( resource pdf_object, float x, float y, float r, float alpha, float beta)| Draws an arc (clockwise)
  2033. int pdf_attach_file ( int pdf_object, float llx, float lly, float urx, float ury, string filename, string description, string author, string mimetype, string icon)| Adds a file attachement for current page
  2034. void pdf_begin_page ( int pdf_object, float width, float height)| Starts new page
  2035. int pdf_begin_pattern ( int pdf_object, float width, float height, float xstep, float ystep, int painttype)| Starts new pattern
  2036. int pdf_begin_template ( int pdf_object, float width, float height)| Starts new template
  2037. void pdf_circle ( int pdf_object, float x, float y, float r)| Draws a circle
  2038. void pdf_clip ( int pdf_object)| Clips to current path
  2039. void pdf_close ( int pdf_object)| Closes a pdf object
  2040. void pdf_close_image ( int pdf_object, int image)| Closes an image
  2041. void pdf_close_pdi ( int pdf_object, int dochandle)|  Close the input PDF document 
  2042. void pdf_close_pdi_page ( int pdf_object, int pagehandle)|  Close the page handle 
  2043. void pdf_closepath ( int pdf_object)| Closes path
  2044. void pdf_closepath_fill_stroke ( int pdf_object)| Closes, fills and strokes current path
  2045. void pdf_closepath_stroke ( int pdf_object)| Closes path and draws line along path
  2046. void pdf_concat ( int pdf_object, float a, float b, float c, float d, float e, float f)| Concatenate a matrix to the CTM
  2047. void pdf_continue_text ( int pdf_object, string text)| Outputs text in next line
  2048. void pdf_curveto ( int pdf_object, float x1, float y1, float x2, float y2, float x3, float y3)| Draws a curve
  2049. void pdf_delete ( int pdf_object)| Deletes a PDF object
  2050. void pdf_end_page ( int pdf_object)| Ends a page
  2051. void pdf_end_pattern ( int pdf_object)| Finish pattern
  2052. void pdf_end_template ( int pdf_object)| Finish template
  2053. void pdf_fill ( int pdf_object)| Fills current path
  2054. void pdf_fill_stroke ( int pdf_object)| Fills and strokes current path
  2055. int pdf_findfont ( int pdf_object, string fontname, string encoding, int embed)| Prepare font for later use with pdf_setfont().
  2056. string pdf_get_buffer ( int pdf_object)| Fetch the buffer containig the generated PDF data.
  2057. string pdf_get_image_height ( int pdf_object, int image)| Returns height of an image
  2058. string pdf_get_image_width ( int pdf_object, int image)| Returns width of an image
  2059. int pdf_get_majorversion ( void )|  Returns the major version number of the PDFlib 
  2060. int pdf_get_majorversion ( void )|  Returns the minor version number of the PDFlib 
  2061. string pdf_get_parameter ( int pdf_object, string key [, float modifier])| Gets certain parameters
  2062. string pdf_get_pdi_parameter ( int pdf_object, string key, int doc, int page, int index)| Get some PDI string parameters
  2063. string pdf_get_pdi_value ( int pdf_object, string key, int doc, int page, int index)| Gets some PDI numerical parameters
  2064. float pdf_get_value ( int pdf_object, string key [, float modifier])| Gets certain numerical value
  2065. void pdf_initgraphics ( int pdf_object)| Resets graphic state
  2066. void pdf_lineto ( int pdf_object, float x, float y)| Draws a line
  2067. void pdf_makespotcolor ( int pdf_object, string spotname)| Makes a spotcolor
  2068. void pdf_moveto ( int pdf_object, float x, float y)| Sets current point
  2069. int pdf_new ( )| Creates a new pdf object
  2070. int pdf_open_CCITT ( int pdf_object, string filename, int width, int height, int BitReverse, int k, int Blackls1)| Opens a new image file with raw CCITT data
  2071. int pdf_open_file ( int pdf_object [, string filename])| Opens a new pdf object
  2072. int pdf_open_image ( int PDF-document, string imagetype, string source, string data, long length, int width, int height, int components, int bpc, string params)| Versatile function for images
  2073. int pdf_open_image_file ( int PDF-document, string imagetype, string filename [, string stringparam [, string intparam]])| Reads an image from a file
  2074. int pdf_open_memory_image ( int pdf_object, int image)| Opens an image created with PHP's image functions
  2075. int pdf_open_pdi ( int pdf_object, string filename, string stringparam, int intparam)|  Opens a PDF file 
  2076. int pdf_open_pdi_page ( int pdf_object, int dochandle, int pagenumber, string pagelabel)|  Prepare a page 
  2077. int pdf_open_tiff ( int PDF-document, string filename)| Deprecated: Opens a TIFF image
  2078. void pdf_place_image ( int pdf_object, int image, float x, float y, float scale)| Places an image on the page
  2079. void pdf_place_pdi_page ( int pdf_object, int page, float x, float y, float sx, float sy)| Places an image on the page
  2080. void pdf_rect ( int pdf_object, float x, float y, float width, float height)| Draws a rectangle
  2081. void pdf_restore ( int pdf_object)| Restores formerly saved environment
  2082. void pdf_rotate ( int pdf_object, float phi)| Sets rotation
  2083. void pdf_save ( int pdf_object)| Saves the current environment
  2084. void pdf_scale ( int pdf_object, float x-scale, float y-scale)| Sets scaling
  2085. void pdf_set_border_color ( int pdf_object, float red, float green, float blue)| Sets color of border around links and annotations
  2086. void pdf_set_border_dash ( int pdf_object, float black, float white)| Sets dash style of border around links and annotations
  2087. void pdf_set_border_style ( int pdf_object, string style, float width)| Sets style of border around links and annotations
  2088. void pdf_set_horiz_scaling ( int pdf_object, float scale)| Sets horizontal scaling of text
  2089. void pdf_set_info ( int pdf_object, string key, string value)| Fills a field of the document information
  2090. bool pdf_set_info_author ( int pdfdoc, string author)|  Fills the author field of the document 
  2091. bool pdf_set_info_creator ( int pdfdoc, string creator)|  Fills the creator field of the document 
  2092. bool pdf_set_info_keywords ( int pdfdoc, string keywords)|  Fills the keywords field of the document 
  2093. bool pdf_set_info_subject ( int pdfdoc, string subject)|  Fills the subject field of the document 
  2094. bool pdf_set_info_title ( int pdfdoc, string title)|  Fills the title field of the document 
  2095. void pdf_set_parameter ( int pdf_object, string key, string value)| Sets certain parameters
  2096. void pdf_set_text_pos ( int pdf_object, float x, float y)| Sets text position
  2097. void pdf_set_value ( int pdf_object, string key, float value)| Sets certain numerical value
  2098. void pdf_setcolor ( int pdf_object, string type, string colorspace, float c1 [, float c2 [, float c3 [, float c4]]])| Sets fill and stroke color
  2099. void pdf_setdash ( int pdf_object, float b, float w)| Sets dash pattern
  2100. void pdf_setflat ( int pdf_object, float flatness)| Sets flatness
  2101. void pdf_setfont ( int pdf_object, int font, float size)| Set the current font
  2102. void pdf_setgray ( int pdf_object, float gray)| Sets drawing and filling color to gray value
  2103. void pdf_setgray_fill ( int pdf_object, float gray)| Sets filling color to gray value
  2104. void pdf_setgray_stroke ( int pdf_object, float gray)| Sets drawing color to gray value
  2105. void pdf_setlinecap ( int pdf_object, int linecap)| Sets linecap parameter
  2106. void pdf_setlinejoin ( int pdf_object, int value)| Sets linejoin parameter
  2107. void pdf_setlinewidth ( int pdf_object, float width)| Sets line width
  2108. void pdf_setmatrix ( int pdf_object, float a, float b, float c, float d, float e, float f)| Sets current transformation matrix
  2109. void pdf_setmiterlimit ( int pdf_object, float miter)| Sets miter limit
  2110. void pdf_setpolydash ( int pdf_object, float * dasharray)| Sets complicated dash pattern
  2111. void pdf_setrgbcolor ( int pdf_object, float red_value, float green_value, float blue_value)| Sets drawing and filling color to rgb color value
  2112. void pdf_setrgbcolor_fill ( int pdf_object, float red_value, float green_value, float blue_value)| Sets filling color to rgb color value
  2113. void pdf_setrgbcolor_stroke ( int pdf_object, float red_value, float green_value, float blue_value)| Sets drawing color to rgb color value
  2114. void pdf_show ( int pdf_object, string text)| Output text at current position
  2115. int pdf_show_boxed ( int pdf_object, string text, float left, float top, float width, float height, string hmode [, string feature])| Output text in a box
  2116. void pdf_show_xy ( int pdf_object, string text, float x, float y)| Output text at given position
  2117. void pdf_skew ( int pdf_object, float alpha, float beta)| Skews the coordinate system
  2118. float pdf_stringwidth ( int pdf_object, string text [, int font [, float size]])| Returns width of text using current font
  2119. void pdf_stroke ( int pdf_object)| Draws line along path
  2120. void pdf_translate ( int pdf_object, float tx, float ty)| Sets origin of coordinate system
  2121. void pfpro_cleanup ( void )| Shuts down the Payflow Pro library
  2122. void pfpro_init ( void )| Initialises the Payflow Pro library
  2123. array pfpro_process ( array parameters [, string address [, int port [, int timeout [, string proxy_address [, int proxy_port [, string proxy_logon [, string proxy_password]]]]]]])| Process a transaction with Payflow Pro
  2124. string pfpro_process_raw ( string parameters [, string address [, int port [, int timeout [, string proxy_address [, int proxy_port [, string proxy_logon [, string proxy_password]]]]]]])| Process a raw transaction with Payflow Pro
  2125. string pfpro_version ( void )| Returns the version of the Payflow Pro software
  2126. int pfsockopen ( string hostname, int port [, int errno [, string errstr [, int timeout]]])|  Open persistent Internet or Unix domain socket connection 
  2127. int pg_affected_rows ( resource result)| Retorna o n·mero de registros afetados (linhas)
  2128. bool pg_cancel_query ( resource connection)|  Cancela uma consulta (query) assφncrona 
  2129. string pg_client_encoding ( [resource connection])|  Retorna a codificaτπo do cliente 
  2130. bool pg_close ( resource connection)| Fecha uma conexπo PostgreSQL
  2131. resource pg_connect ( string connection_string)| Abre uma conexπo PostgreSQL
  2132. bool pg_connection_busy ( resource connection)|  Verifica se a conexπo estß ocupada ou nπo 
  2133. bool pg_connection_reset ( resource connection)|  Reinicia uma conexπo (reconecta) 
  2134. int pg_connection_status ( resource connection)|  Retorna o status da conexπo 
  2135. array pg_convert ( resource connection, string table_name, array assoc_array [, int options])|  Converte os valores de um array associativo em uma declaraτπo SQL apropriada. 
  2136. bool pg_copy_from ( resource connection, string table_name, array rows [, string delimiter [, string null_as]])|  Insere registros em uma tabela a partir de um array 
  2137. int pg_copy_to ( resource connection, string table_name [, string delimiter [, string null_as]])|  Copia uma tabela em um array 
  2138. string pg_dbname ( resource connection)| Retorna o nome do banco de dados
  2139. mixed pg_delete ( resource connection, string table_name, array assoc_array [, int options])|  Remove registros. 
  2140. bool pg_end_copy ( [resource connection])| Sincroniza com o backend PostgreSQL
  2141. string pg_escape_bytea ( string data)|  Gera binßrios para o tipo bytea 
  2142. string pg_escape_string ( string data)|  Gera string para o tipo text/char 
  2143. array pg_fetch_all ( resource result [, int row])| Retorna todas as linhas (registros) como um array
  2144. array pg_fetch_array ( resource result [, int row [, int result_type]])| Retorna uma linha (registro) como um array
  2145. array pg_fetch_assoc ( resource result [, int row])| Retorna uma linha (registro) como um array
  2146. objeto pg_fetch_object ( resource result, int row [, int result_type])| Retorna uma linha (registro) como um objeto
  2147. misto pg_fetch_result ( resource result, int row, mixed field)| Retorna valores a partir de um recurso (resource) de resultado
  2148. array pg_fetch_row ( resource result, int row)| Retorna uma linha como um array enumerado
  2149. int pg_field_is_null ( resource result, int row, mixed field)| Testa se o campo Θ NULL
  2150. string pg_field_name ( resource result, int field_number)| Retorna o nome de um campo
  2151. int pg_field_num ( resource result, string field_name)| Retorna o n·mero do campo referido
  2152. int pg_field_prtlen ( resource result, int row_number, string field_name)| Retorna o comprimento impresso
  2153. int pg_field_size ( resource result, int field_number)|  Retorna o tamanho de armazenamento interno de um campo 
  2154. string pg_field_type ( resource result, int field_number)|  Retorna o nome do tipo para o campo de nome correspondente 
  2155. bool pg_free_result ( resource result)| Libera a mem≤ria usada pelo resultado
  2156. array pg_get_notify ( resource connection [, int result_type])| Ping database connection
  2157. int pg_get_pid ( resource connection)| Ping database connection
  2158. resource pg_get_result ( [resource connection])|  Retorna o resultado de uma consulta (query) assφncrona 
  2159. string pg_host ( resource connection)|  Retorna o nome da mßquina associada a uma conexπo 
  2160. bool pg_insert ( resource connection, string table_name, array assoc_array [, int options])|  Insere um array na tabela 
  2161. string pg_last_error ( resource connection)| Retorna a string da ·ltima mensagem de erro de uma conexπo
  2162. string pg_last_notice ( resource connection)|  Retorna a ·ltima notificaτπo do servidor PostgreSQL 
  2163. int pg_last_oid ( resource result)| Retorna o ·ltimo oid do objeto
  2164. bool pg_lo_close ( resource large_object)| Fecha um objeto grande (large object)
  2165. int pg_lo_create ( resource connection)| Cria um objeto grande (large object)
  2166. bool pg_lo_export ( int oid, string pathname [, resource connection])| Exporta um objeto grande (large object) para um arquivo
  2167. int pg_lo_import ( [resource connection, string pathname])| Importa um objeto grande (large object) a partir de um arquivo
  2168. resource pg_lo_open ( resource connection, int oid, string mode)| Abre um objeto grande (large object)
  2169. string pg_lo_read ( resource large_object, int len)| LΩ um objeto grande (large object)
  2170. int pg_lo_read_all ( resource large_object)|  LΩ um objeto grande (large object) inteiro e o envia diretamente para o navegador 
  2171. bool pg_lo_seek ( resource large_object, int offset [, int whence])|  Procura uma posiτπo em um objeto grande (large object) 
  2172. int pg_lo_tell ( resource large_object)|  Retorna a posiτπo atual de um objeto grande (large object) 
  2173. bool pg_lo_unlink ( resource connection, int oid)| Remove um objeto grande (large object)
  2174. int pg_lo_write ( resource large_object, string data)| Escreve em um objeto grande (large object)
  2175. int pg_num_fields ( resource result)| Retorna o n·mero de campos
  2176. int pg_num_rows ( resource result)| Retorna o n·mero de linhas
  2177. string pg_options ( resource connection)| Retorna as opτ⌡es associadas com a conexπo
  2178. int pg_pconnect ( string connection_string)| Abre uma conexπo PostgreSQL persistente
  2179. bool pg_ping ( resource connection)| Faz um ping na conexπo com o banco de dados
  2180. int pg_port ( resource connection)|  Retorna o n·mero da porta associada com a conexπo. 
  2181. bool pg_put_line ( [resource connection, string data])| Envia uma string terminada em NULL para o backend PostgreSQL
  2182. resource pg_query ( resource connection, string query)| Executa uma consulta (query)
  2183. string pg_result_error ( resource result)|  Retorna a mensagem de erro associada a um resultado 
  2184. array pg_result_seek ( resource result, int offset)| Altera a posiτπo do ponteiro interno de um recurso (resource) de resultado
  2185. int pg_result_status ( resource result)|  Retorna o status do resultado da consulta (query) 
  2186. array pg_select ( resource connection, string table_name, array assoc_array [, int options])|  Seleciona registros. 
  2187. bool pg_send_query ( resource connection, string query)|  Envia uma consulta (query) assincrona 
  2188. int pg_set_client_encoding ( [resource connection, string encoding])|  Define a codificaτπo do cliente 
  2189. bool pg_trace ( string pathname [, string mode [, resource connection]])| Habilita rastreamento em uma conexπo PostgreSQL
  2190. string pg_tty ( resource connection)|  Retorna o nome da tty associada com a conexπo 
  2191. string pg_unescape_bytea ( string data)|  Faz escape binßrio para o tipo bytea 
  2192. bool pg_untrace ( [resource connection])| Desabilita o rastreamento de uma conexπo PostgreSQL
  2193. mixed pg_update ( resource connection, string table_name, array data, array condition [, int options])|  Atualiza uma tabela. 
  2194. string php_ini_scanned_files ( void )| Return a list of .ini files parsed from the additional ini dir
  2195. string php_logo_guid ( void )| Gets the logo guid
  2196. string php_sapi_name ( void )|  Returns the type of interface between web server and PHP 
  2197. string php_uname ( void )|  Returns information about the operating system PHP was built on 
  2198. void phpcredits ( [int flag])| Prints out the credits for PHP
  2199. int phpinfo ( [int what])| Outputs lots of PHP information
  2200. string phpversion ( void )| Gets the current PHP version
  2201. float pi ( void )| ObtΩm o valor de pi
  2202. int png2wbmp ( string pngname, string wbmpname, int d_height, int d_width, int threshold)| Convert PNG image file to WBMP image file
  2203. int popen ( string command, string mode)| Abre um processo como ponteiro de arquivo
  2204. mixed pos ( array array)| Retorna o elemento atual do array
  2205. string posix_ctermid ( void )| Get path name of controlling terminal
  2206. int posix_get_last_error ( void )|  Retrieve the error number set by the last posix function that failed. 
  2207. string posix_getcwd ( void )| Pathname of current directory
  2208. int posix_getegid ( void )|  Return the effective group ID of the current process 
  2209. int posix_geteuid ( void )|  Return the effective user ID of the current process 
  2210. int posix_getgid ( void )|  Return the real group ID of the current process 
  2211. array posix_getgrgid ( int gid)| Return info about a group by group id
  2212. array posix_getgrnam ( string name)| Return info about a group by name
  2213. array posix_getgroups ( void )|  Return the group set of the current process 
  2214. string posix_getlogin ( void )| Return login name
  2215. int posix_getpgid ( int pid)| Get process group id for job control
  2216. int posix_getpgrp ( void )|  Return the current process group identifier 
  2217. int posix_getpid ( void )| Return the current process identifier
  2218. int posix_getppid ( void )| Return the parent process identifier
  2219. array posix_getpwnam ( string username)| Return info about a user by username
  2220. array posix_getpwuid ( int uid)| Return info about a user by user id
  2221. array posix_getrlimit ( void )| Return info about system ressource limits
  2222. int posix_getsid ( int pid)| Get the current sid of the process
  2223. int posix_getuid ( void )|  Return the real user ID of the current process 
  2224. bool posix_isatty ( int fd)|  Determine if a file descriptor is an interactive terminal 
  2225. bool posix_kill ( int pid, int sig)| Send a signal to a process
  2226. bool posix_mkfifo ( string pathname, int mode)|  Create a fifo special file (a named pipe) 
  2227. bool posix_setegid ( int gid)|  Set the effective GID of the current process 
  2228. bool posix_seteuid ( int uid)|  Set the effective UID of the current process 
  2229. bool posix_setgid ( int gid)|  Set the GID of the current process 
  2230. int posix_setpgid ( int pid, int pgid)| set process group id for job control
  2231. int posix_setsid ( void )| Make the current process a session leader
  2232. bool posix_setuid ( int uid)|  Set the UID of the current process 
  2233. string posix_strerror ( int errno)|  Retrieve the system error message associated with the given errno. 
  2234. array posix_times ( void )| Get process times
  2235. string posix_ttyname ( int fd)| Determine terminal device name
  2236. array posix_uname ( void )| Get system name
  2237. number pow ( number base, number exp)| PotΩncia
  2238. array preg_grep ( string pattern, array input)|  Return array entries that match the pattern 
  2239. int preg_match ( string pattern, string subject [, array matches [, int flags]])| Perform a regular expression match
  2240. int preg_match_all ( string pattern, string subject, array matches [, int flags])| Perform a global regular expression match
  2241. string preg_quote ( string str [, string delimiter])| Quote regular expression characters
  2242. mixed preg_replace ( mixed pattern, mixed replacement, mixed subject [, int limit])| Perform a regular expression search and replace
  2243. mixed preg_replace_callback ( mixed pattern, callback callback, mixed subject [, int limit])| Perform a regular expression search and replace using a callback
  2244. array preg_split ( string pattern, string subject [, int limit [, int flags]])| Split string by a regular expression
  2245. mixed prev ( array array)| Retrocede o ponteiro interno de um array
  2246. int print ( string arg)| Mostra uma string
  2247. bool print_r ( mixed expression [, bool return])|  Prints human-readable information about a variable 
  2248. void printer_abort ( resource handle)| Deletes the printer's spool file
  2249. void printer_close ( resource handle)| Close an open printer connection
  2250. mixed printer_create_brush ( int style, string color)| Create a new brush
  2251. void printer_create_dc ( resource handle)| Create a new device context
  2252. mixed printer_create_font ( string face, int height, int width, int font_weight, bool italic, bool underline, bool strikeout, int orientaton)| Create a new font
  2253. mixed printer_create_pen ( int style, int width, string color)| Create a new pen
  2254. bool printer_delete_brush ( resource handle)| Delete a brush
  2255. bool printer_delete_dc ( resource handle)| Delete a device context
  2256. bool printer_delete_font ( resource handle)| Delete a font
  2257. bool printer_delete_pen ( resource handle)| Delete a pen
  2258. void printer_draw_bmp ( resource handle, string filename, int x, int y)| Draw a bmp
  2259. void printer_draw_chord ( resource handle, int rec_x, int rec_y, int rec_x1, int rec_y1, int rad_x, int rad_y, int rad_x1, int rad_y1)| Draw a chord
  2260. void printer_draw_elipse ( resource handle, int ul_x, int ul_y, int lr_x, int lr_y)| Draw an ellipse
  2261. void printer_draw_line ( resource printer_handle, int from_x, int from_y, int to_x, int to_y)| Draw a line
  2262. void printer_draw_pie ( resource handle, int rec_x, int rec_y, int rec_x1, int rec_y1, int rad1_x, int rad1_y, int rad2_x, int rad2_y)| Draw a pie
  2263. void printer_draw_rectangle ( resource handle, int ul_x, int ul_y, int lr_x, int lr_y)| Draw a rectangle
  2264. void printer_draw_roundrect ( resource handle, int ul_x, int ul_y, int lr_x, int lr_y, int width, int height)| Draw a rectangle with rounded corners
  2265. void printer_draw_text ( resource printer_handle, string text, int x, int y)| Draw text
  2266. bool printer_end_doc ( resource handle)| Close document
  2267. bool printer_end_page ( resource handle)| Close active page
  2268. mixed printer_get_option ( resource handle, string option)| Retrieve printer configuration data
  2269. array printer_list ( int enumtype [, string name [, int level]])| Return an array of printers attached to the server 
  2270. int printer_logical_fontheight ( resource handle, int height)| Get logical font height
  2271. mixed printer_open ( [string devicename])| Open connection to a printer
  2272. void printer_select_brush ( resource printer_handle, resource brush_handle)| Select a brush
  2273. void printer_select_font ( resource printer_handle, resource font_handle)| Select a font
  2274. void printer_select_pen ( resource printer_handle, resource pen_handle)| Select a pen
  2275. bool printer_set_option ( resource handle, int option, mixed value)| Configure the printer connection
  2276. bool printer_start_doc ( resource handle [, string document])| Start a new document
  2277. bool printer_start_page ( resource handle)| Start a new page
  2278. bool printer_write ( resource handle, string content)| Write data to the printer
  2279. void printf ( string format [, mixed args])| Mostra uma string formatada
  2280. int proc_close ( resource process)|  Close a process opened by proc_open() and return the exit code of that process. 
  2281. int proc_get_status ( resource process)|  Get information about a process opened by proc_open() 
  2282. bool proc_nice ( int priority)|  Change the priority of the current process 
  2283. resource proc_open ( string cmd, array descriptorspec, array pipes)|  Execute a command and open file pointers for input/output 
  2284. int proc_terminate ( resource process [, int signal])|  kills a process opened by proc_open 
  2285. int pspell_add_to_personal ( int dictionary_link, string word)| Add the word to a personal wordlist
  2286. int pspell_add_to_session ( int dictionary_link, string word)| Add the word to the wordlist in the current session 
  2287. bool pspell_check ( int dictionary_link, string word)| Check a word
  2288. int pspell_clear_session ( int dictionary_link)| Clear the current session
  2289. int pspell_config_create ( string language [, string spelling [, string jargon [, string encoding]]])| Create a config used to open a dictionary
  2290. int pspell_config_ignore ( int dictionary_link, int n)| Ignore words less than N characters long
  2291. int pspell_config_mode ( int dictionary_link, int mode)| Change the mode number of suggestions returned
  2292. int pspell_config_personal ( int dictionary_link, string file)| Set a file that contains personal wordlist
  2293. int pspell_config_repl ( int dictionary_link, string file)| Set a file that contains replacement pairs
  2294. int pspell_config_runtogether ( int dictionary_link, bool flag)| Consider run-together words as valid compounds
  2295. int pspell_config_save_repl ( int dictionary_link, bool flag)| Determine whether to save a replacement pairs list along with the wordlist
  2296. int pspell_new ( string language [, string spelling [, string jargon [, string encoding [, int mode]]]])| Load a new dictionary
  2297. int pspell_new_config ( int config)| Load a new dictionary with settings based on a given config 
  2298. int pspell_new_personal ( string personal, string language [, string spelling [, string jargon [, string encoding [, int mode]]]])| Load a new dictionary with personal wordlist
  2299. int pspell_save_wordlist ( int dictionary_link)| Save the personal wordlist to a file
  2300. int pspell_store_replacement ( int dictionary_link, string misspelled, string correct)| Store a replacement pair for a word
  2301. array pspell_suggest ( int dictionary_link, string word)| Suggest spellings of a word
  2302. void putenv ( string setting)| Sets the value of an environment variable
  2303. string qdom_error ( void )| Returns the error string from the last QDOM operation or FALSE if no errors occured
  2304. object qdom_tree ( string )| creates a tree of an xml string
  2305. string quoted_printable_decode ( string str)|  Converte uma string quoted-printable para uma string de 8 bit 
  2306. string quotemeta ( string str)| Adiciona uma barra invertida antes dos meta caracteres
  2307. float rad2deg ( float number)|  Converte o n·mero em radianos para o equivalente em graus 
  2308. int rand ( [int min, int max])| Gera um n·mero aleat≤rio
  2309. array range ( mixed low, mixed high [, int step])|  Cria um array contendo uma faixa de elementos 
  2310. string rawurldecode ( string str)| Decode URL-encoded strings
  2311. string rawurlencode ( string str)| URL-encode according to RFC 1738
  2312. string readdir ( resource dir_handle)| LΩ os campos do manipulador do diret≤rio
  2313. int readfile ( string nomedoarquivo [, int use_include_path])| Le o conte·do de um arquivo
  2314. int readgzfile ( string filename [, int use_include_path])| Output a gz-file
  2315. string readline ( [string prompt])| Reads a line
  2316. void readline_add_history ( string line)| Adds a line to the history
  2317. bool readline_clear_history ( void )| Clears the history
  2318. bool readline_completion_function ( string line)| Registers a completion function
  2319. mixed readline_info ( [string varname [, string newvalue]])| Gets/sets various internal readline variables
  2320. array readline_list_history ( void )| Lists the history
  2321. bool readline_read_history ( string filename)| Reads the history
  2322. bool readline_write_history ( string filename)| Writes the history
  2323. string readlink ( string path)| Retornar o alvo de um link simb≤lico
  2324. string realpath ( string path)| Retorna o path absoluto canonicalizado
  2325. bool recode_file ( string request, resource input, resource output)|  Recode from file to file according to recode request
  2326. string recode_string ( string request, string string)| Recode a string according to a recode request
  2327. void register_shutdown_function ( callback function)|  Register a function for execution on shutdown 
  2328. void register_tick_function ( callback function [, mixed arg])|  Register a function for execution on each tick 
  2329. bool rename ( string nomeantigo, string novonome)| Renomear um arquivo
  2330. mixed reset ( array array)|  Faz o ponteiro interno de um array apontar para o seu primeiro elemento 
  2331. void restore_error_handler ( void )|  Restores the previous error handler function 
  2332. void restore_include_path ( void )|  Restores the value of the include_path configuration option 
  2333. int rewind ( int fp)| Reinicializa a posiτπo do ponteiro de arquivos para o inφcio
  2334. void rewinddir ( resource dir_handle)| voltar (rewind) o handle de diret≤rio
  2335. int rmdir ( string nomedodir)| Remove um diret≤rio
  2336. float round ( float val [, int precision])| Arredonda um n·mero
  2337. void rsort ( array array [, int sort_flags])| Ordena um array em ordem descrescente
  2338. string rtrim ( string str [, string charlist])|  Retira espaτo em branco do final da string 
  2339. array scandir ( string directory [, int sorting_order])|  List files and directories inside the specified path 
  2340. bool sem_acquire ( int sem_identifier)| Acquire a semaphore
  2341. int sem_get ( int key [, int max_acquire [, int perm]])| Get a semaphore id
  2342. bool sem_release ( int sem_identifier)| Release a semaphore
  2343. bool sem_remove ( int sem_identifier)| Remove a semaphore
  2344. string serialize ( mixed value)|  Generates a storable representation of a value 
  2345. int sesam_affected_rows ( string result_id)|  Get number of rows affected by an immediate query 
  2346. bool sesam_commit ( void )|  Commit pending updates to the SESAM database 
  2347. bool sesam_connect ( string catalog, string schema, string user)| Open SESAM database connection
  2348. array sesam_diagnostic ( void )|  Return status information for last SESAM call 
  2349. bool sesam_disconnect ( void )| Detach from SESAM connection
  2350. string sesam_errormsg ( void )| Returns error message of last SESAM call
  2351. string sesam_execimm ( string query)| Execute an "immediate" SQL-statement
  2352. array sesam_fetch_array ( string result_id [, int whence [, int offset]])| Fetch one row as an associative array
  2353. mixed sesam_fetch_result ( string result_id [, int max_rows])| Return all or part of a query result
  2354. array sesam_fetch_row ( string result_id [, int whence [, int offset]])| Fetch one row as an array
  2355. array sesam_field_array ( string result_id)|  Return meta information about individual columns in a result 
  2356. int sesam_field_name ( string result_id, int index)|  Return one column name of the result set 
  2357. int sesam_free_result ( string result_id)| Releases resources for the query
  2358. int sesam_num_fields ( string result_id)|  Return the number of fields/columns in a result set 
  2359. string sesam_query ( string query [, bool scrollable])| Perform a SESAM SQL query and prepare the result
  2360. bool sesam_rollback ( void )|  Discard any pending updates to the SESAM database 
  2361. bool sesam_seek_row ( string result_id, int whence [, int offset])|  Set scrollable cursor mode for subsequent fetches 
  2362. bool sesam_settransaction ( int isolation_level, int read_only)| Set SESAM transaction parameters
  2363. int session_cache_expire ( [int new_cache_expire])| Retorna o prazo do cache atual
  2364. string session_cache_limiter ( [string cache_limiter])| ObtΘm e/ou define o limitador do cache atual
  2365. bool session_decode ( string data)| Decifra dado de sessπo de uma string
  2366. bool session_destroy ( void )| Destr≤i todos os dados registrados para uma sessπo
  2367. string session_encode ( void )|  Codifica os dados da sessπo atual como uma string 
  2368. array session_get_cookie_params ( void )|  ObtΘm os parΓmetros do cookie da sessπo 
  2369. string session_id ( [string id])| ObtΘm e/ou define a id da sessπo atual
  2370. bool session_is_registered ( string name)|  Descobre se uma varißvel estß registrada numa sessπo 
  2371. string session_module_name ( [string module])| ObtΘm e/ou define o m≤dulo da sessπo atual
  2372. string session_name ( [string name])| ObtΘm e/ou define o nome da sessπo atual
  2373. bool session_regenerate_id ( void )|  Update the current session id with a newly generated one 
  2374. bool session_register ( mixed name [, mixed ...])|  Registrar uma ou mais varißveis na sessπo atual 
  2375. string session_save_path ( [string path])| ObtΘm e/ou define o save path da sessπo atual
  2376. void session_set_cookie_params ( int lifetime [, string path [, string domain [, bool secure]]])|  Define os parΓmetros do cookie de sessπo 
  2377. bool session_set_save_handler ( string open, string close, string read, string write, string destroy, string gc)|  Define a sequΩncia de funτ⌡es de armazenamento 
  2378. bool session_start ( void )| Inicia dados de sessπo
  2379. bool session_unregister ( string name)|  Desregistra varißvel da sessπo atual 
  2380. void session_unset ( void )|  Liberta todas as varißveis de sessπo 
  2381. void session_write_close ( void )| Escreve dados de sessπo e termina a sessπo
  2382. string set_error_handler ( callback error_handler)|  Sets a user-defined error handler function. 
  2383. string set_include_path ( string new_include_path)|  Sets the include_path configuration option
  2384. bool set_magic_quotes_runtime ( int new_setting)|  Sets the current active configuration setting of magic_quotes_runtime 
  2385. void set_time_limit ( int seconds)| Limits the maximum execution time
  2386. bool setcookie ( string name [, string value [, int expire [, string path [, string domain [, int secure]]]]])| Send a cookie
  2387. string setlocale ( mixed category, string locale [, string ...])| Set locale information
  2388. bool settype ( mixed var, string type)| Set the type of a variable
  2389. string sha1 ( string str [, bool raw_output])| Calcula a hash sha1 de uma string
  2390. string sha1_file ( string nomedoarquivo [, bool raw_output])| Calcula a hash sha1 de um arquivo
  2391. string shell_exec ( string cmd)|  Execute command via shell and return complete output as string 
  2392. int shm_attach ( int key [, int memsize [, int perm]])| Creates or open a shared memory segment
  2393. bool shm_detach ( int shm_identifier)| Disconnects from shared memory segment
  2394. mixed shm_get_var ( int id, int variable_key)| Returns a variable from shared memory
  2395. int shm_put_var ( int shm_identifier, int variable_key, mixed variable)| Inserts or updates a variable in shared memory
  2396. int shm_remove ( int shm_identifier)| Removes shared memory from Unix systems
  2397. int shm_remove_var ( int id, int variable_key)| Removes a variable from shared memory 
  2398. int shmop_close ( int shmid)| Close shared memory block
  2399. int shmop_delete ( int shmid)| Delete shared memory block
  2400. int shmop_open ( int key, string flags, int mode, int size)| Create or open shared memory block
  2401. string shmop_read ( int shmid, int start, int count)| Read data from shared memory block
  2402. int shmop_size ( int shmid)| Get size of shared memory block
  2403. int shmop_write ( int shmid, string data, int offset)| Write data into shared memory block
  2404. void shuffle ( array array)| Mistura os elementos de um array
  2405. int similar_text ( string first, string second [, float percent])|  Calculate the similarity between two strings 
  2406. float sin ( float arg)| Seno
  2407. float sinh ( float arg)| Seno hiperb≤lico
  2408. int sizeof ( mixed var)| Retorna o n·mero de elementos de uma varißvel
  2409. void sleep ( int seconds)| Atrasa a execuτπo do script
  2410. bool snmp_get_quick_print ( void )|  Fetches the current value of the UCD library's quick_print setting 
  2411. void snmp_set_quick_print ( bool quick_print)| Set the value of quick_print within the UCD SNMP library 
  2412. string snmpget ( string hostname, string community, string object_id [, int timeout [, int retries]])| Fetch an SNMP object
  2413. array snmprealwalk ( string host, string community, string object_id [, int timeout [, int retries]])|  Return all objects including their respective object ID within the specified one 
  2414. bool snmpset ( string hostname, string community, string object_id, string type, mixed value [, int timeout [, int retries]])| Set an SNMP object
  2415. array snmpwalk ( string hostname, string community, string object_id [, int timeout [, int retries]])| Fetch all the SNMP objects from an agent
  2416. array snmpwalkoid ( string hostname, string community, string object_id [, int timeout [, int retries]])| Query for a tree of information about a network entity 
  2417. resource socket_accept ( resource socket)| Accepts a connection on a socket
  2418. bool socket_bind ( resource socket, string address [, int port])| Binds a name to a socket
  2419. void socket_clear_error ( [resource socket])| Clears the error on the socket or the last error code
  2420. void socket_close ( resource socket)| Closes a socket resource
  2421. bool socket_connect ( resource socket, string address [, int port])| Initiates a connection on a socket
  2422. resource socket_create ( int domain, int type, int protocol)| Create a socket (endpoint for communication)
  2423. resource socket_create_listen ( int port [, int backlog])| Opens a socket on port to accept connections 
  2424. bool socket_create_pair ( int domain, int type, int protocol, array &fd)| Creates a pair of indistinguishable sockets and stores them in fds. 
  2425. mixed socket_get_option ( resource socket, int level, int optname)| Gets socket options for the socket 
  2426. bool socket_getpeername ( resource socket, string &addr [, int &port])|  Queries the remote side of the given socket which may either result in host/port or in a UNIX filesystem path, dependent on its type.
  2427. bool socket_getsockname ( resource socket, string &addr [, int &port])|  Queries the local side of the given socket which may either result in host/port or in a UNIX filesystem path, dependent on its type. 
  2428. bool socket_iovec_add ( resource iovec, int iov_len)| Adds a new vector to the scatter/gather array 
  2429. resource socket_iovec_alloc ( int num_vectors [, int ])|  Builds a 'struct iovec' for use with sendmsg, recvmsg, writev, and readv 
  2430. bool socket_iovec_delete ( resource iovec, int iov_pos)| Deletes a vector from an array of vectors 
  2431. string socket_iovec_fetch ( resource iovec, int iovec_position)| Returns the data held in the iovec specified by iovec_id[iovec_position] 
  2432. bool socket_iovec_free ( resource iovec)| Frees the iovec specified by iovec_id 
  2433. bool socket_iovec_set ( resource iovec, int iovec_position, string new_val)| Sets the data held in iovec_id[iovec_position] to new_val 
  2434. int socket_last_error ( [resource socket])| Returns the last error on the socket 
  2435. bool socket_listen ( resource socket [, int backlog])| Listens for a connection on a socket
  2436. string socket_read ( resource socket, int length [, int type])| Reads a maximum of length bytes from a socket
  2437. bool socket_readv ( resource socket, resource iovec_id)| Reads from an fd, using the scatter-gather array defined by iovec_id 
  2438. int socket_recv ( resource socket, string &buf, int len, int flags)| Receives data from a connected socket 
  2439. int socket_recvfrom ( resource socket, string &buf, int len, int flags, string &name [, int &port])| Receives data from a socket, connected or not 
  2440. bool socket_recvmsg ( resource socket, resource iovec, array &control, int &controllen, int &flags, string &addr [, int &port])| Used to receive messages on a socket, whether connection-oriented or not 
  2441. int socket_select ( array &read, array &write, array &except, int tv_sec [, int tv_usec])|  Runs the select() system call on the given arrays of sockets with a specified timeout 
  2442. int socket_send ( resource socket, string buf, int len, int flags)| Sends data to a connected socket 
  2443. bool socket_sendmsg ( resource socket, resource iovec, int flags, string addr [, int port])| Sends a message to a socket, regardless of whether it is connection-oriented or not 
  2444. int socket_sendto ( resource socket, string buf, int len, int flags, string addr [, int port])| Sends a message to a socket, whether it is connected or not 
  2445. bool socket_set_block ( resource socket)|  Sets blocking mode on a socket resource 
  2446. bool socket_set_nonblock ( resource socket)| Sets nonblocking mode for file descriptor fd
  2447. bool socket_set_option ( resource socket, int level, int optname, mixed optval)| Sets socket options for the socket
  2448. bool socket_shutdown ( resource socket [, int how])| Shuts down a socket for receiving, sending, or both.
  2449. string socket_strerror ( int errno)| Return a string describing a socket error
  2450. int socket_write ( resource socket, string buffer [, int length])| Write to a socket
  2451. bool socket_writev ( resource socket, resource iovec_id)| Writes to a file descriptor, fd, using the scatter-gather array defined by iovec_id 
  2452. void sort ( array array [, int sort_flags])| Ordena um array
  2453. string soundex ( string str)| Calculate the soundex key of a string
  2454. array split ( string expressao, string variavel [, int limite])| Separa strings em matrizes(array) utilizando express⌡es regulares
  2455. array spliti ( string expressao, string variavel [, int limite])|  Separa strings em matrizes(array) utilizando express⌡es regulares insensφveis a mai·sculas e min·sculas 
  2456. string sql_regcase ( string variavel)|  Cria express⌡es regulares insensφveis a mai·sculas e min·sculas.
  2457. array sqlite_array_query ( resource db, string query [, int result_type [, bool decode_binary]])| Executa uma query ao banco de dados e retorna uma matriz
  2458. void sqlite_busy_timeout ( resource dbhandle, int milliseconds)| Set busy timeout duration, or disable busy handlers.
  2459. int sqlite_changes ( resource dbhandle)|  Returns the number of rows that were changed by the most recent SQL statement. 
  2460. void sqlite_close ( resource database)| Fercha um banco de dados SQLite que esteja aberto.
  2461. mixed sqlite_column ( resource result, mixed index_or_name [, bool decode_binary])| Fetches a column from the current row of a result set.
  2462. bool sqlite_create_aggregate ( resource dbhandle, string function_name, mixed step_func, mixed finalize_func [, int num_args])| Register an aggregating UDF for use in SQL statements.
  2463. bool sqlite_create_function ( resource dbhandle, string function_name, mixed callback [, int num_args])|  Registers a "regular" User Defined Function for use in SQL statements. 
  2464. array sqlite_current ( resource result [, int result_type [, bool decode_binary]])| Fetches the current row from a result set as an array.
  2465. string sqlite_error_string ( int error_code)| Retorna a descriτπo textual de um c≤digo de erro
  2466. string sqlite_escape_string ( string item)| Escapa uma string para ser usada como um parΓmetro em uma query
  2467. array sqlite_fetch_array ( resource result [, int result_type [, bool decode_binary]])| ObtΘm a pr≤xima linha de um resultado como uma matriz.
  2468. string sqlite_fetch_single ( resource result [, int result_type [, bool decode_binary]])| Fetches the first column of a result set as a string.
  2469. string sqlite_field_name ( resource result, int field_index)| Returns the name of a particular field.
  2470. bool sqlite_has_more ( resource result)| Returns whether or not more rows are available.
  2471. int sqlite_last_error ( resource db)| Retorna o c≤digo de erro para o ·ltimo erro de um banco de dados
  2472. int sqlite_last_insert_rowid ( resource dbhandle)| Returns the rowid of the most recently inserted row.
  2473. string sqlite_libencoding ( void )| Returns the encoding of the linked SQLite library.
  2474. string sqlite_libversion ( void )| Returns the version of the linked SQLite library.
  2475. bool sqlite_next ( resource result)| Seek to the next row number.
  2476. int sqlite_num_fields ( resource result)| Returns the number of fields in a result set.
  2477. int sqlite_num_rows ( resource result)| Returns the number of rows in a buffered result set.
  2478. resource sqlite_open ( string filename [, int mode [, string &errmessage]])| Abre um banco de dados SQLite. Irß criar o banco de dados se ele nπo existir
  2479. resource sqlite_popen ( string filename [, int mode [, string &error_message]])|  Opens a persistent handle to an SQLite database. Will create the database if it does not exist. 
  2480. resource sqlite_query ( resource dbhandle, string query)|  Executes a query against a given database and returns a result handle. 
  2481. bool sqlite_rewind ( resource result)| Seek to the first row number.
  2482. bool sqlite_seek ( resource result, int rownum)| Seek to a particular row number of a buffered result set.
  2483. string sqlite_udf_decode_binary ( string data)| Decode binary data passed as parameters to an UDF.
  2484. string sqlite_udf_encode_binary ( string data)| Encode binary data before returning it from an UDF.
  2485. resource sqlite_unbuffered_query ( resource dbhandle, string query)| Execute a query that does not prefetch and buffer all data
  2486. float sqrt ( float arg)| Raiz quadrada
  2487. void srand ( int seed)| Semeia o gerador de n·meros alet≤rios
  2488. mixed sscanf ( string str, string format [, string var1])|  Parses input from a string according to a format 
  2489. array stat ( string nomedoarquivo)| Obtem informaτ⌡es sobre um arquivo
  2490. mixed str_ireplace ( mixed search, mixed replace, mixed subject [, int &count])|  Case-insensitive version of str_replace(). 
  2491. string str_pad ( string input, int pad_length [, string pad_string [, int pad_type]])|  Preenche uma string para um certo tamanho com outra string 
  2492. string str_repeat ( string input, int multiplier)| Repeat a string
  2493. mixed str_replace ( mixed search, mixed replace, mixed subject [, int &count])|  Replace all occurrences of the search string with the replacement string 
  2494. string str_rot13 ( string str)| Perform the rot13 transform on a string
  2495. string str_shuffle ( string str)| Randomly shuffles a string
  2496. array str_split ( string string [, int split_length])|  Convert a string to an array 
  2497. mixed str_word_count ( string string [, int format])|  Return information about words used in a string 
  2498. int strcasecmp ( string str1, string str2)|  Binary safe case-insensitive string comparison 
  2499. int strcmp ( string str1, string str2)| Comparaτπo de string segura para binßrio
  2500. int strcoll ( string str1, string str2)| Comparaτπo de string baseada no local
  2501. int strcspn ( string str1, string str2)|  Encontra o tamanho do segmento inicial que nπo contenha a mascara 
  2502. resource stream_context_create ( array options)| Create a streams context
  2503. array stream_context_get_options ( resource stream|context)| Retrieve options for a stream/wrapper/context
  2504. bool stream_context_set_option ( resource context|stream, string wrapper, string option, mixed value)| Sets an option for a stream/wrapper/context
  2505. bool stream_context_set_params ( resource stream|context, array params)| Set parameters for a stream/wrapper/context
  2506. int stream_copy_to_stream ( resource source, resource dest [, int maxlength])| Copies data from one stream to another
  2507. bool stream_filter_append ( resource stream, string filtername [, int read_write [, string params]])| Attach a filter to a stream.
  2508. bool stream_filter_prepend ( resource stream, string filtername [, int read_write [, string params]])| Attach a filter to a stream.
  2509. bool stream_filter_register ( string filtername, string classname)|  Register a stream filter implemented as a PHP class derived from php_user_filter 
  2510. array stream_get_filters ( void )| Retrieve list of registered filters
  2511. string stream_get_line ( resource handle, int length, string ending)| Gets line from stream resource up to a given delimiter
  2512. array stream_get_meta_data ( resource stream)| Retrieves header/meta data from streams/file pointers
  2513. array stream_get_transports ( void )| Retrieve list of registered socket transports
  2514. array stream_get_wrappers ( void )| Retrieve list of registered streams
  2515. int stream_select ( resource &read, resource &write, resource &except, int tv_sec [, int tv_usec])| Runs the equivalent of the select() system call on the given arrays of streams with a timeout specified by tv_sec and tv_usec
  2516. bool stream_set_blocking ( resource stream, int mode)| Set blocking/non-blocking mode on a stream
  2517. bool stream_set_timeout ( resource stream, int seconds [, int microseconds])| Set timeout period on a stream
  2518. int stream_set_write_buffer ( resource stream, int buffer)| Sets file buffering on the given stream
  2519. resource stream_socket_accept ( resource server_socket [, int timeout [, string &peername]])|  Accept a connection on a socket created by stream_socket_server() 
  2520. resource stream_socket_client ( string remote_socket [, int &errno [, string &errstr [, float timeout [, int flags [, resource context]]]]])|  Open Internet or Unix domain socket connection 
  2521. string stream_socket_get_name ( resource handle, bool want_peer)| Retrieve the name of the local or remote sockets
  2522. resource stream_socket_server ( string local_socket [, int &errno [, string &errstr [, int flags [, resource context]]]])|  Create an Internet or Unix domain server socket 
  2523. bool stream_wrapper_register ( string protocol, string classname)| Register a URL wrapper implemented as a PHP class
  2524. string strftime ( string format [, int timestamp])|  Formata uma hora/data de acordo com as configuraτ⌡es locais 
  2525. string strip_tags ( string str [, string allowable_tags])| Retira as tags HTML e PHP de uma string
  2526. string stripcslashes ( string str)|  Desfaz o efeito de addcslashes() 
  2527. int stripos ( string haystack, string needle [, int offset])|  Find position of first occurrence of a case-insensitive string 
  2528. string stripslashes ( string str)|  Desfaz o efeito de addslashes() 
  2529. string stristr ( string haystack, string needle)|  Case-insensitive strstr() 
  2530. int strlen ( string str)| Retorna o tamanho de uma string
  2531. int strnatcasecmp ( string str1, string str2)|  Comparaτπo de strings sem diferenciar mai·sculas/min·sculas usando o algoritmo "natural order" 
  2532. int strnatcmp ( string str1, string str2)|  Comparaτπo de strings usando o algoritmo "natural order" 
  2533. int strncasecmp ( string str1, string str2, int len)|  Binary safe case-insensitive string comparison of the first n characters 
  2534. int strncmp ( string str1, string str2, int len)|  Comparaτπo de string segura para binßrio para os primeiros n caracteres 
  2535. int strpos ( string haystack, string needle [, int offset])|  Encontra a posiτπo da primeira ocorrΩncia de uma string 
  2536. string strrchr ( string haystack, string needle)|  Find the last occurrence of a character in a string 
  2537. string strrev ( string string)| Reverse a string
  2538. int strripos ( string haystack, string needle)|  Find position of last occurrence of a case-insensitive string in a string 
  2539. int strrpos ( string haystack, char needle)|  Find position of last occurrence of a char in a string 
  2540. int strspn ( string str1, string str2)|  Find length of initial segment matching mask 
  2541. string strstr ( string haystack, string needle)| Encontra a primeira ocorrencia de uma string
  2542. string strtok ( string arg1, string arg2)| Tokenize string
  2543. string strtolower ( string str)| Converte uma string para min·sculas
  2544. int strtotime ( string time [, int now])|  Analisa qualquer descriτπo em texto em inglΩs de data hora em timestamp UNIX 
  2545. string strtoupper ( string string)| Converte uma string para mai·sculas
  2546. string strtr ( string str, string from, string to)| Translate certain characters
  2547. string strval ( mixed var)| Get string value of a variable
  2548. string substr ( string string, int start [, int length])| Retorna uma parte de uma string
  2549. int substr_count ( string haystack, string needle)| Conta o n·mero de ocorrΩncias de uma substring
  2550. string substr_replace ( string string, string replacement, int start [, int length])| Replace text within a portion of a string
  2551. void swf_actiongeturl ( string url, string target)| Get a URL from a Shockwave Flash movie
  2552. void swf_actiongotoframe ( int framenumber)| Play a frame and then stop
  2553. void swf_actiongotolabel ( string label)|  Display a frame with the specified label 
  2554. void swf_actionnextframe ( void )| Go foward one frame
  2555. void swf_actionplay ( void )|  Start playing the flash movie from the current frame 
  2556. void swf_actionsettarget ( string target)| Set the context for actions
  2557. void swf_actionstop ( void )|  Stop playing the flash movie at the current frame 
  2558. void swf_actiontogglequality ( void )|  Toggle between low and high quality 
  2559. void swf_actionwaitforframe ( int framenumber, int skipcount)|  Skip actions if a frame has not been loaded 
  2560. void swf_addbuttonrecord ( int states, int shapeid, int depth)|  Controls location, appearance and active area of the current button 
  2561. void swf_addcolor ( float r, float g, float b, float a)|  Set the global add color to the rgba value specified 
  2562. void swf_closefile ( [int return_file])| Close the current Shockwave Flash file
  2563. void swf_definebitmap ( int objid, string image_name)| Define a bitmap
  2564. void swf_definefont ( int fontid, string fontname)|  Defines a font 
  2565. void swf_defineline ( int objid, float x1, float y1, float x2, float y2, float width)| Define a line
  2566. void swf_definepoly ( int objid, array coords, int npoints, float width)|  Define a polygon 
  2567. void swf_definerect ( int objid, float x1, float y1, float x2, float y2, float width)| Define a rectangle
  2568. void swf_definetext ( int objid, string str, int docenter)| Define a text string
  2569. void swf_endbutton ( void )|  End the definition of the current button 
  2570. void swf_enddoaction ( void )| End the current action
  2571. void swf_endshape ( void )|  Completes the definition of the current shape 
  2572. void swf_endsymbol ( void )| End the definition of a symbol
  2573. void swf_fontsize ( float size)| Change the font size
  2574. void swf_fontslant ( float slant)| Set the font slant
  2575. void swf_fonttracking ( float tracking)| Set the current font tracking
  2576. array swf_getbitmapinfo ( int bitmapid)| Get information about a bitmap
  2577. array swf_getfontinfo ( void )|  The height in pixels of a capital A and a lowercase x 
  2578. int swf_getframe ( void )| Get the frame number of the current frame
  2579. void swf_labelframe ( string name)| Label the current frame
  2580. void swf_lookat ( float view_x, float view_y, float view_z, float reference_x, float reference_y, float reference_z, float twist)| Define a viewing transformation
  2581. void swf_modifyobject ( int depth, int how)| Modify an object
  2582. void swf_mulcolor ( float r, float g, float b, float a)|  Sets the global multiply color to the rgba value specified 
  2583. int swf_nextid ( void )| Returns the next free object id
  2584. void swf_oncondition ( int transition)|  Describe a transition used to trigger an action list 
  2585. void swf_openfile ( string filename, float width, float height, float framerate, float r, float g, float b)| Open a new Shockwave Flash file
  2586. void swf_ortho ( float xmin, float xmax, float ymin, float ymax, float zmin, float zmax)|  Defines an orthographic mapping of user coordinates onto the current viewport 
  2587. void swf_ortho2 ( float xmin, float xmax, float ymin, float ymax)|  Defines 2D orthographic mapping of user coordinates onto the current viewport 
  2588. void swf_perspective ( float fovy, float aspect, float near, float far)|  Define a perspective projection transformation 
  2589. void swf_placeobject ( int objid, int depth)| Place an object onto the screen
  2590. void swf_polarview ( float dist, float azimuth, float incidence, float twist)|  Define the viewer's position with polar coordinates 
  2591. void swf_popmatrix ( void )|  Restore a previous transformation matrix 
  2592. void swf_posround ( int round)|  Enables or Disables the rounding of the translation when objects are placed or moved 
  2593. void swf_pushmatrix ( void )|  Push the current transformation matrix back unto the stack 
  2594. void swf_removeobject ( int depth)| Remove an object
  2595. void swf_rotate ( float angle, string axis)| Rotate the current transformation
  2596. void swf_scale ( float x, float y, float z)| Scale the current transformation
  2597. void swf_setfont ( int fontid)| Change the current font
  2598. void swf_setframe ( int framenumber)| Switch to a specified frame
  2599. void swf_shapearc ( float x, float y, float r, float ang1, float ang2)| Draw a circular arc
  2600. void swf_shapecurveto ( float x1, float y1, float x2, float y2)|  Draw a quadratic bezier curve between two points 
  2601. void swf_shapecurveto3 ( float x1, float y1, float x2, float y2, float x3, float y3)| Draw a cubic bezier curve
  2602. void swf_shapefillbitmapclip ( int bitmapid)|  Set current fill mode to clipped bitmap 
  2603. void swf_shapefillbitmaptile ( int bitmapid)|  Set current fill mode to tiled bitmap 
  2604. void swf_shapefilloff ( void )| Turns off filling
  2605. void swf_shapefillsolid ( float r, float g, float b, float a)|  Set the current fill style to the specified color 
  2606. void swf_shapelinesolid ( float r, float g, float b, float a, float width)| Set the current line style
  2607. void swf_shapelineto ( float x, float y)| Draw a line
  2608. void swf_shapemoveto ( float x, float y)| Move the current position
  2609. void swf_showframe ( void )| Display the current frame
  2610. void swf_startbutton ( int objid, int type)| Start the definition of a button
  2611. void swf_startdoaction ( void )|  Start a description of an action list for the current frame 
  2612. void swf_startshape ( int objid)| Start a complex shape
  2613. void swf_startsymbol ( int objid)| Define a symbol
  2614. float swf_textwidth ( string str)| Get the width of a string
  2615. void swf_translate ( float x, float y, float z)| Translate the current transformations
  2616. void swf_viewport ( float xmin, float xmax, float ymin, float ymax)| Select an area for future drawing
  2617. new swfaction ( string script)| Creates a new Action.
  2618. new swfbitmap ( string filename [, int alphafilename])| Loads Bitmap object
  2619. new swfbutton ( void )| Creates a new Button.
  2620. int swfbutton_keypress ( string str)|  Returns the action flag for keyPress(char)
  2621. new swfdisplayitem ( void )| Creates a new displayitem object.
  2622. new SWFFill ( void )| Loads SWFFill object
  2623. new swffont ( string filename)| Loads a font definition
  2624. new swfgradient ( void )| Creates a gradient object
  2625. new swfmorph ( void )| Creates a new SWFMorph object.
  2626. new swfmovie ( void )| Creates a new movie object, representing an SWF version 4 movie.
  2627. new swfshape ( void )| Creates a new shape object.
  2628. new swfsprite ( void )| Creates a movie clip (a sprite)
  2629. new swftext ( void )| Creates a new SWFText object.
  2630. new swftextfield ( [int flags])| Creates a text field object
  2631. int sybase_affected_rows ( [int link_identifier])| informa o n·mero de linhas afetadas pela ·ltima consulta
  2632. bool sybase_close ( int link_identifier)| fecha uma conexπo Sybase
  2633. int sybase_connect ( string servername, string username, string password [, string charset])| abre uma conexπo Sybase
  2634. bool sybase_data_seek ( resource result_identifier, int row_number)| Moves internal row pointer
  2635. void sybase_deadlock_retry_count ( int retry_count)| Sets the deadlock retry count
  2636. array sybase_fetch_array ( resource result)| Fetch row as array
  2637. array sybase_fetch_assoc ( resource result)| Fetch a result row as an associative array
  2638. object sybase_fetch_field ( resource result [, int field_offset])| Get field information from a result
  2639. object sybase_fetch_object ( resource result [, mixed object])| Fetch a row as an object
  2640. array sybase_fetch_row ( resource result)| Get a result row as an enumerated array
  2641. bool sybase_field_seek ( resource result, int field_offset)| Sets field offset
  2642. bool sybase_free_result ( resource result)| Frees result memory
  2643. string sybase_get_last_message ( void )| Returns the last message from the server
  2644. void sybase_min_client_severity ( int severity)| Sets minimum client severity
  2645. void sybase_min_error_severity ( int severity)| Sets minimum error severity
  2646. void sybase_min_message_severity ( int severity)| Sets minimum message severity
  2647. void sybase_min_server_severity ( int severity)| Sets minimum server severity
  2648. int sybase_num_fields ( resource result)| Gets the number of fields in a result set
  2649. int sybase_num_rows ( resource result)| Get number of rows in a result set
  2650. resource sybase_pconnect ( [string servername [, string username [, string password [, string charset [, string appname]]]]])| Open persistent Sybase connection
  2651. resource sybase_query ( string query, resource link_identifier)| Sends a Sybase query
  2652. string sybase_result ( resource result, int row, mixed field)| Get result data
  2653. bool sybase_select_db ( string database_name [, resource link_identifier])| Selects a Sybase database
  2654. bool sybase_set_message_handler ( callback handler)| Sets the handler called when a server message is raised
  2655. resource sybase_unbuffered_query ( string query, resource link_identifier)| Send a Sybase query and do not block
  2656. int symlink ( string alvo, string link)| Cria um link simb≤lico
  2657. int syslog ( int priority, string message)| Generate a system log message
  2658. string system ( string command [, int return_var])| Execute an external program and display output
  2659. float tan ( float arg)| Tangente
  2660. float tanh ( float arg)| Tangente hiperb≤lica
  2661. string tempnam ( string dir, string prefix)| Cria um nome de arquivo ·nico
  2662. string textdomain ( string text_domain)| Seta o domφnio padrπo
  2663. int hour ( void )| Retorna o timestamp UNIX 
  2664. int arqtmp ( void )| Cria um arquivo temporßrio
  2665. array token_get_all ( string source)| Split given source into PHP tokens
  2666. string token_name ( int token)| Get the symbolic name of a given PHP token
  2667. int touch ( string filename [, int time [, int atime]])| Muda o tempo de modificaτπo do arquivo
  2668. void trigger_error ( string error_msg [, int error_type])|  Generates a user-level error/warning/notice message 
  2669. string trim ( string str [, string charlist])|  Strip whitespace from the beginning and end of a string 
  2670. void uasort ( array array, function cmp_function)|  Ordena um array utilizando uma funτπo de comparaτπo definida pelo usußrio e mantendo as associaτ⌡es entre chaves e valores 
  2671. string ucfirst ( string str)| Make a string's first character uppercase
  2672. string ucwords ( string str)|  Uppercase the first character of each word in a string 
  2673. bool udm_add_search_limit ( resource agent, int var, string val)| Add various search limits
  2674. resource udm_alloc_agent ( string dbaddr [, string dbmode])| Allocate mnoGoSearch session
  2675. int udm_api_version ( void )| Get mnoGoSearch API version.
  2676. array udm_cat_list ( resource agent, string category)| Get all the categories on the same level with the current one.
  2677. array udm_cat_path ( resource agent, string category)| Get the path to the current category.
  2678. bool udm_check_charset ( resource agent, string charset)|  Check if the given charset is known to mnogosearch 
  2679. int udm_check_stored ( resource agent, int link, string doc_id)|  Check connection to stored 
  2680. bool udm_clear_search_limits ( resource agent)| Clear all mnoGoSearch search restrictions
  2681. int udm_close_stored ( resource agent, int link)|  Close connection to stored 
  2682. int udm_crc32 ( resource agent, string str)|  Return CRC32 checksum of gived string 
  2683. int udm_errno ( resource agent)| Get mnoGoSearch error number
  2684. string udm_error ( resource agent)| Get mnoGoSearch error message
  2685. resource udm_find ( resource agent, string query)| Perform search
  2686. int udm_free_agent ( resource agent)| Free mnoGoSearch session
  2687. bool udm_free_ispell_data ( int agent)| Free memory allocated for ispell data
  2688. bool udm_free_res ( resurce res)| Free mnoGoSearch result
  2689. int udm_get_doc_count ( resource agent)| Get total number of documents in database.
  2690. string udm_get_res_field ( resource res, int row, int field)| Fetch mnoGoSearch result field
  2691. string udm_get_res_param ( resource res, int param)| Get mnoGoSearch result parameters
  2692. bool udm_load_ispell_data ( resource agent, int var, string val1, string val2, int flag)| Load ispell data
  2693. int udm_open_stored ( resource agent, string storedaddr)|  Open connection to stored 
  2694. bool udm_set_agent_param ( resource agent, int var, string val)| Set mnoGoSearch agent session parameters
  2695. void uksort ( array array, function cmp_function)|  Ordena um array pelas chaves utilizando uma funτπo de comparaτπo definida pelo usußrio. 
  2696. int umask ( [int mask])| Modificar a umask atual
  2697. string uniqid ( string prefix [, bool lcg])| Gera um ID unico
  2698. int unixtojd ( [int timestamp])| Convert UNIX timestamp to Julian Day
  2699. int unlink ( string nomedoarquivo)| Deleta um arquivo
  2700. array unpack ( string format, string data)| Unpack data from binary string
  2701. void unregister_tick_function ( string function_name)|  De-register a function for execution on each tick 
  2702. mixed unserialize ( string str [, string callback])|  Creates a PHP value from a stored representation 
  2703. void unset ( mixed var [, mixed var [, ...]])| Unset a given variable
  2704. string urldecode ( string str)| Decodifica uma URL codificada
  2705. string urlencode ( string str)| Codifica uma string URL
  2706. void usleep ( int micro_seconds)| Atrasa a execuτπo em milionΘsimos de segundo
  2707. void usort ( array array, string cmp_function)|  Ordena um array pelos valores utilizando uma funτπo de comparaτπo definida pelo usußrio 
  2708. string utf8_decode ( string data)|  Converts a string with ISO-8859-1 characters encoded with UTF-8 to single-byte ISO-8859-1. 
  2709. string utf8_encode ( string data)| encodes an ISO-8859-1 string to UTF-8
  2710. void var_dump ( mixed expression [, mixed expression [, ...]])| Dumps information about a variable
  2711. mixed var_export ( mixed expression [, bool return])| Outputs or returns a string representation of a variable
  2712. int version_compare ( string version1, string version2 [, string operator])|  Compares two "PHP-standardized" version number strings
  2713. int virtual ( string filename)| Realiza uma sub-requisiτπo no Apache
  2714. bool vpopmail_add_alias_domain ( string domain, string aliasdomain)| Add an alias for a virtual domain
  2715. bool vpopmail_add_alias_domain_ex ( string olddomain, string newdomain)| Add alias to an existing virtual domain
  2716. bool vpopmail_add_domain ( string domain, string dir, int uid, int gid)| Add a new virtual domain
  2717. bool vpopmail_add_domain_ex ( string domain, string passwd [, string quota [, string bounce [, bool apop]]])| Add a new virtual domain
  2718. bool vpopmail_add_user ( string user, string domain, string password [, string gecos [, bool apop]])| Add a new user to the specified virtual domain
  2719. bool vpopmail_alias_add ( string user, string domain, string alias)| insert a virtual alias
  2720. bool vpopmail_alias_del ( string user, string domain)| deletes all virtual aliases of a user
  2721. bool vpopmail_alias_del_domain ( string domain)| deletes all virtual aliases of a domain
  2722. array vpopmail_alias_get ( string alias, string domain)| get all lines of an alias for a domain
  2723. array vpopmail_alias_get_all ( string domain)| get all lines of an alias for a domain
  2724. bool vpopmail_auth_user ( string user, string domain, string password [, string apop])| Attempt to validate a username/domain/password. Returns true/false
  2725. bool vpopmail_del_domain ( string domain)| Delete a virtual domain
  2726. bool vpopmail_del_domain_ex ( string domain)| Delete a virtual domain
  2727. bool vpopmail_del_user ( string user, string domain)| Delete a user from a virtual domain
  2728. string vpopmail_error ( void )| Get text message for last vpopmail error. Returns string
  2729. bool vpopmail_passwd ( string user, string domain, string password)| Change a virtual user's password
  2730. bool vpopmail_set_user_quota ( string user, string domain, string quota)| Sets a virtual user's quota
  2731. void vprintf ( string format, array args)| Output a formatted string
  2732. string vsprintf ( string format, array args)| Return a formatted string
  2733. bool w32api_deftype ( string typename, string member1_type, string member1_name [, string ... [, string ...]])| Defines a type for use with other w32api_functions
  2734. resource w32api_init_dtype ( string typename, mixed value [, mixed ...])|  Creates an instance of the data type typename and fills it with the values passed 
  2735. mixed w32api_invoke_function ( string funcname, mixed argument [, mixed ...])| Invokes function funcname with the arguments passed after the function name
  2736. bool w32api_register_function ( string library, string function_name, string return_type)| Registers function function_name from library with PHP
  2737. void w32api_set_call_method ( int method)| Sets the calling method used
  2738. bool wddx_add_vars ( int packet_id, mixed name_var [, mixed ...])|  Add variables to a WDDX packet with the specified ID 
  2739. mixed wddx_deserialize ( string packet)| Deserializes a WDDX packet
  2740. string wddx_packet_end ( int packet_id)| Ends a WDDX packet with the specified ID
  2741. int wddx_packet_start ( [string comment])|  Starts a new WDDX packet with structure inside it 
  2742. string wddx_serialize_value ( mixed var [, string comment])| Serialize a single value into a WDDX packet
  2743. string wddx_serialize_vars ( mixed var_name [, mixed ...])| Serialize variables into a WDDX packet
  2744. string wordwrap ( string str [, int width [, string break [, boolean cut]]])|  Quebra uma string em linhas usando um caractere de quebra de linha. 
  2745. string xml_error_string ( int code)| get XML parser error string
  2746. int xml_get_current_byte_index ( resource parser)| get current byte index for an XML parser
  2747. int xml_get_current_column_number ( resource parser)|  Get current column number for an XML parser 
  2748. int xml_get_current_line_number ( resource parser)| get current line number for an XML parser
  2749. int xml_get_error_code ( resource parser)| get XML parser error code
  2750. bool xml_parse ( resource parser, string data [, bool is_final])| start parsing an XML document
  2751. int xml_parse_into_struct ( resource parser, string data, array &values [, array &index])| Parse XML data into an array structure
  2752. resource xml_parser_create ( [string encoding])| create an XML parser
  2753. resource xml_parser_create_ns ( [string encoding [, string separator]])|  Create an XML parser with namespace support 
  2754. bool xml_parser_free ( resource parser)| Free an XML parser
  2755. mixed xml_parser_get_option ( resource parser, int option)| get options from an XML parser
  2756. bool xml_parser_set_option ( resource parser, int option, mixed value)| set options in an XML parser
  2757. bool xml_set_character_data_handler ( resource parser, callback handler)| set up character data handler
  2758. bool xml_set_default_handler ( resource parser, callback handler)| set up default handler
  2759. bool xml_set_element_handler ( resource parser, callback start_element_handler, callback end_element_handler)| set up start and end element handlers
  2760. bool xml_set_end_namespace_decl_handler ( resource pind, callback handler)|  Set up character data handler 
  2761. bool xml_set_external_entity_ref_handler ( resource parser, callback handler)| set up external entity reference handler
  2762. bool xml_set_notation_decl_handler ( resource parser, callback handler)| set up notation declaration handler
  2763. void xml_set_object ( resource parser, object object)| Use XML Parser within an object
  2764. bool xml_set_processing_instruction_handler ( resource parser, callback handler)|  Set up processing instruction (PI) handler 
  2765. bool xml_set_start_namespace_decl_handler ( resource pind, callback hdl)|  Set up character data handler 
  2766. bool xml_set_unparsed_entity_decl_handler ( resource parser, callback handler)|  Set up unparsed entity declaration handler 
  2767. array xmlrpc_decode ( string xml [, string encoding])| Decodes XML into native PHP types
  2768. array xmlrpc_decode_request ( string xml, string method [, string encoding])| Decodes XML into native PHP types
  2769. string xmlrpc_encode ( mixed value)| Generates XML for a PHP value
  2770. string xmlrpc_encode_request ( string method, mixed params)| Generates XML for a method request
  2771. string xmlrpc_get_type ( mixed value)| Gets xmlrpc type for a PHP value. Especially useful for base64 and datetime strings
  2772. array xmlrpc_parse_method_descriptions ( string xml)| Decodes XML into a list of method descriptions
  2773. int xmlrpc_server_add_introspection_data ( resource server, array desc)| Adds introspection documentation
  2774. mixed xmlrpc_server_call_method ( resource server, string xml, mixed user_data [, array output_options])| Parses XML requests and call methods
  2775. resource xmlrpc_server_create ( void )| Creates an xmlrpc server
  2776. void xmlrpc_server_destroy ( resource server)| Destroys server resources
  2777. bool xmlrpc_server_register_introspection_callback ( resource server, string function)| Register a PHP function to generate documentation
  2778. bool xmlrpc_server_register_method ( resource server, string method_name, string function)| Register a PHP function to resource method matching method_name
  2779. bool xmlrpc_set_type ( string value, string type)| Sets xmlrpc type, base64 or datetime, for a PHP string value
  2780. array xpath_eval ( object xpath context, string xpath expression [, object contextnode])|  Evaluates the XPath Location Path in the given string 
  2781. array xpath_eval_expression ( object xpath_context)|  Evaluates the XPath Location Path in the given string 
  2782. object xpath_new_context ( object dom document)|  Creates new xpath context 
  2783. int xptr_eval ( [object xpath_context, string eval_str])|  Evaluate the XPtr Location Path in the given string 
  2784. string xptr_new_context ( [object doc_handle])|  Create new XPath Context 
  2785. resource xslt_create ( void )| Create a new XSLT processor
  2786. int xslt_errno ( resource xh)| Returns an error number
  2787. mixed xslt_error ( resource xh)| Returns an error string
  2788. void xslt_free ( resource xh)| Free XSLT processor
  2789. mixed xslt_process ( resource xh, string xmlcontainer, string xslcontainer [, string resultcontainer [, array arguments [, array parameters]]])| Perform an XSLT transformation
  2790. void xslt_set_base ( resource xh, string uri)| Set the base URI for all XSLT transformations
  2791. void xslt_set_encoding ( resource xh, string encoding)| Set the encoding for the parsing of XML documents
  2792. void xslt_set_error_handler ( resource xh, mixed handler)| Set an error handler for a XSLT processor
  2793. void xslt_set_log ( resource xh, mixed log)| Set the log file to write log messages to
  2794. void xslt_set_sax_handler ( resource xh, array handlers)| Set SAX handlers for a XSLT processor
  2795. void xslt_set_sax_handlers ( resource processor, array handlers)|  Set the SAX handlers to be called when the XML document gets processed 
  2796. void xslt_set_scheme_handler ( resource xh, array handlers)| Set Scheme handlers for a XSLT processor
  2797. void xslt_set_scheme_handlers ( resource processor, array handlers)|  Set the scheme handlers for the XSLT processor 
  2798. string yaz_addinfo ( resource id)| Returns additional error information
  2799. int yaz_ccl_conf ( resource id, array config)| Configure CCL parser
  2800. bool yaz_ccl_parse ( resource id, string query, array & result)| Invoke CCL Parser
  2801. bool yaz_close ( resource id)| Close YAZ connection
  2802. resource yaz_connect ( string zurl [, mixed options])|  Prepares for a connection to a Z39.50 target (server). 
  2803. bool yaz_database ( resource id, string databases)|  Specifies the databases within a session 
  2804. bool yaz_element ( resource id, string elementset)|  Specifies Element-Set Name for retrieval 
  2805. int yaz_errno ( resource id)| Returns error number
  2806. string yaz_error ( resource id)| Returns error description
  2807. string yaz_get_option ( resource id, string name)| Returns value of option for connection
  2808. int yaz_hits ( resource id)| Returns number of hits for last search
  2809. int yaz_itemorder ( resource id, array args)|  Prepares for Z39.50 Item Order with an ILL-Request package 
  2810. int yaz_present ( resource id)|  Prepares for retrieval (Z39.50 present). 
  2811. bool yaz_range ( resource id, int start, int number)|  Specifies the maximum number of records to retrieve 
  2812. string yaz_record ( resource id, int pos, string type)| Returns a record
  2813. int yaz_scan ( resource id, string type, string startterm [, array flags])| Prepares for a scan
  2814. array yaz_scan_result ( resource id [, array & result])| Returns Scan Response result
  2815. int yaz_schema ( resource id, string schema)|  Specifies schema for retrieval. 
  2816. string yaz_set_option ( resource id, string name, string value)| Sets one or more options for connection
  2817. int yaz_sort ( resource id, string criteria)| Sets sorting criteria
  2818. int yaz_syntax ( resource id, string syntax)|  Specifies the preferred record syntax for retrieval. 
  2819. int yaz_wait ( [array options])| Wait for Z39.50 requests to complete
  2820. void yp_all ( string domain, string map, string callback)|  Traverse the map and call a function on each entry 
  2821. array yp_cat ( string domain, string map)|  Return an array containing the entire map 
  2822. string yp_err_string ( int errorcode)|  Returns the error string associated with the given error code 
  2823. int yp_errno ( void )|  Returns the error code of the previous operation 
  2824. array yp_first ( string domain, string map)|  Returns the first key-value pair from the named map 
  2825. int yp_get_default_domain ( void )| Fetches the machine's default NIS domain
  2826. string yp_master ( string domain, string map)|  Returns the machine name of the master NIS server for a map 
  2827. string yp_match ( string domain, string map, string key)| Returns the matched line
  2828. array yp_next ( string domain, string map, string key)| Returns the next key-value pair in the named map.
  2829. int yp_order ( string domain, string map)| Returns the order number for a map
  2830. string zend_logo_guid ( void )| Gets the zend guid
  2831. string zend_version ( void )| Gets the version of the current Zend engine
  2832. void zip_close ( resource zip)| Close a Zip File Archive
  2833. void zip_entry_close ( resource zip_entry)| Close a Directory Entry
  2834. int zip_entry_compressedsize ( resource zip_entry)| Retrieve the Compressed Size of a Directory Entry
  2835. string zip_entry_compressionmethod ( resource zip_entry)| Retrieve the Compression Method of a Directory Entry
  2836. int zip_entry_filesize ( resource zip_entry)| Retrieve the Actual File Size of a Directory Entry
  2837. string zip_entry_name ( resource zip_entry)| Retrieve the Name of a Directory Entry
  2838. bool zip_entry_open ( resource zip, resource zip_entry [, string mode])| Open a Directory Entry for Reading
  2839. string zip_entry_read ( resource zip_entry [, int length])| Read From an Open Directory Entry
  2840. resource zip_open ( string filename)| Open a Zip File Archive
  2841. resource zip_read ( resource zip)| Read Next Entry in a Zip File Archive
  2842. string zlib_get_coding_type ( void )| Returns the coding type used for output compression
  2843. void  include ( string arquivo )| Inclui e avalia um arquivo
  2844. void  require ( string arquivo )| Inclui e avalia um arquivo
  2845. void  include_once ( string arquivo )| Inclui um arquivo apenas uma vez no script
  2846. void  require_once ( string arquivo )| Inclui um arquivo apenas uma vez no script
  2847.